mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
450 B
Plaintext
14 lines
450 B
Plaintext
// RUN: %target-sil-opt -assume-parsing-unqualified-ownership-sil %s
|
|
|
|
sil @test : $@convention(thin) () -> () {
|
|
bb0:
|
|
// CHECK: string_literal utf8 "\u{0B}"
|
|
%1 = string_literal utf8 "\u{0B}"
|
|
// CHECK: const_string_literal utf8 "\u{0B}"
|
|
%2 = const_string_literal utf8 "\u{0B}"
|
|
// CHECK: const_string_literal utf16 "\u{0B}"
|
|
%3 = const_string_literal utf16 "\u{0B}"
|
|
%6 = tuple () // user: %7
|
|
return %6 : $()
|
|
}
|