blob: cb90047417023c2b6c91c0fc06637df2a59f6a4c [file] [log] [blame] [edit]
// Check that we print computed properties correctly.
// RUN: %lldb --repl < %s | FileCheck %s
var x : Int {
get {
return 0
}
set {
0
}
}
// CHECK: Welcome to {{.*}}Swift
// CHECK: Type :help
// CHECK: {{x}}: Int
x
// CHECK: {{R0}}: Int = 0