Files
swift-mirror/test/Interpreter/SDK/Foundation_NSLog.swift
Graham Batty 83b4384fac Update test flags for linux failures and support.
Also removed the sdk 'feature' in favour of the more specific
objc_interop.

Swift SVN r24856
2015-01-30 21:31:48 +00:00

12 lines
247 B
Swift

// RUN: %target-run-simple-swift 2>&1 | FileCheck %s
// REQUIRES: objc_interop
import Foundation
// CHECK: 1 is the loneliest number that you'll ever do
NSLog(
"%@ is the loneliest number that you'll ever %@",
NSNumber(integer: 1), "do"
)