Files
swift-mirror/test/Interpreter/SDK/Foundation_NSLog.swift
Ted Kremenek fad874708e Adjust test cases.
Swift SVN r17964
2014-05-12 22:01:52 +00:00

10 lines
220 B
Swift

// RUN: %target-run-simple-swift 2>&1 | FileCheck %s
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"
)