mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
294 B
Swift
12 lines
294 B
Swift
// RUN: %swift -triple x86_64-apple-darwin13 %s -emit-llvm -g -o - | FileCheck %s
|
|
// Int1 still uses 8 bits of storage.
|
|
// CHECK: [ DW_TAG_base_type ] [Builtin.Int1] [line 0, size 8, align 8, offset 0, enc DW_ATE_unsigned]
|
|
func main()
|
|
{
|
|
var t = true
|
|
var f = false
|
|
println("hello")
|
|
}
|
|
|
|
main()
|