Files
swift-mirror/test/stdlib/UnicodeMetadata.swift
Arnold Schwaighofer 2d8a1dbbfe Codesign test/stdlib
2018-08-10 06:58:40 -07:00

15 lines
369 B
Swift

// RUN: %target-build-swift -module-name="01" %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)