mirror of
https://github.com/apple/swift.git
synced 2026-03-04 18:24:35 +01:00
11 lines
604 B
Swift
11 lines
604 B
Swift
// RUN: %swift-ide-test -target %target-cpu-unknown-windows-msvc -print-module -module-to-print unicode -print-interface -source-filename %s -I %S/Inputs/unicode | %FileCheck %s -check-prefix CHECK-C
|
|
// RUN: %swift-ide-test -target %target-cpu-unknown-windows-msvc -enable-experimental-cxx-interop -print-module -module-to-print unicode -print-interface -source-filename %s -I %S/Inputs/unicode | %FileCheck %s -check-prefix CHECK-CXX
|
|
|
|
// REQUIRES: OS=windows-msvc
|
|
|
|
import unicode
|
|
|
|
// CHECK-C: typealias WCHAR = wchar_t
|
|
// CHECK-CXX: typealias WCHAR = CWideChar
|
|
// CHECK: var UNICODE_NULL: WCHAR { get }
|