blob: bcc4228d690d4b95394739d4e07c442455c470ce [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir -g -o - | %FileCheck %s
public class Foo {
// CHECK: !DISubprogram(name: "deinit", linkageName: "$s11Destructors3FooCfD"
// CHECK-SAME: line: [[@LINE-2]]
// CHECK-SAME: DISPFlagDefinition
var x : Int64
init(x: Int64) { self.x = x }
}