Files
swift-mirror/test/DebugInfo/let.swift
2024-07-23 11:06:12 -07:00

15 lines
460 B
Swift

// RUN: %target-swift-frontend -primary-file %s -emit-ir -g -o - | %FileCheck %s
class DeepThought {
func query() -> Int64 { return 42 }
}
func foo() -> Int64 {
// CHECK: #dbg_declare(ptr {{.*}}, ![[A:.*]], !DIExpression()
// CHECK-DAG: !DILocalVariable(name: "machine",{{.*}}line: [[@LINE+1]], type: !{{[0-9]+}})
let machine = DeepThought()
// CHECK-DAG: !DILocalVariable(name: "a", {{.*}}line: [[@LINE+1]],
let a = machine.query()
return a
}