mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
145 B
Swift
12 lines
145 B
Swift
// RUN: %swift %s -i | FileCheck %s
|
|
|
|
func StringPrint() {
|
|
var str : String
|
|
str = "\u00C2\u00B5"
|
|
print(str);
|
|
}
|
|
|
|
StringPrint()
|
|
|
|
// CHECK: µ
|