blob: 81828c890300b01e7c8d8b88ce7bc512695f8a9d [file] [log] [blame]
// 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
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)