Files
swift-mirror/test/Interpreter/SDK/Foundation_NSLog.swift
Graham Batty 198402dcfe Mark tests that don't pass on linux as XFAIL.
Swift SVN r23573
2014-11-24 17:40:37 +00:00

11 lines
236 B
Swift

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