mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
244 B
Swift
10 lines
244 B
Swift
// RUN: rm -rf %t/clang-module-cache
|
|
// RUN: %swift -module-cache-path %t/clang-module-cache -sdk %sdk -repl < %s | FileCheck %s
|
|
// REQUIRES: sdk
|
|
// REQUIRES: swift_repl
|
|
|
|
import Cocoa
|
|
|
|
// CHECK: 0{{$}}
|
|
println(NSNumber(integer: 0).description)
|