mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
16 lines
392 B
Swift
16 lines
392 B
Swift
// RUN: %target-build-swift "@%/S/Inputs/Unicode.rsp" %s -o %t.out
|
|
// RUN: %target-codesign %t.out
|
|
// RUN: %target-run %t.out | %FileCheck %s
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: reflection
|
|
|
|
|
|
class myClass { }
|
|
|
|
// Check that the runtime doesn't crash when generating the class name with
|
|
// a non-ascii module name.
|
|
let array = [ myClass() ]
|
|
|
|
// CHECK: [日本語01.myClass]
|
|
print(array)
|