Swift tests: Don't use label: syntax with older Swift

This commit is contained in:
Nirbheek Chauhan 2016-10-07 11:51:07 +05:30
parent 71eddecdc7
commit 2e16e80048
1 changed files with 4 additions and 0 deletions

View File

@ -1 +1,5 @@
#if swift(>=3.0)
printSomething(text:"String from main")
#else
printSomething("String from main")
#endif