blob: 763d34ff990d5aa9eb892c85e5725b58008afafa [file] [log] [blame]
// 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 : $()
}