blob: 7b7f8d92e36ce3e2a45672972c2c834d1ee138c9 [file] [log] [blame]
// RUN: %target-build-swift -Onone -emit-sib %s -o %t.sib
// RUN: %target-build-swift %t.sib -o %t
// RUN: %target-run %t | %FileCheck %s
// RUN: %target-build-swift -Onone -c %t.sib -o %t.o
// RUN: %target-build-swift %t.o -o %t
// RUN: %target-run %t | %FileCheck %s
// RUN: %target-build-swift -Onone -emit-sibgen %s -o %t.sib
// RUN: %target-build-swift %t.sib -o %t
// RUN: %target-run %t | %FileCheck %s
// RUN: %target-build-swift -Onone -c %t.sib -o %t.o
// RUN: %target-build-swift %t.o -o %t
// RUN: %target-run %t | %FileCheck %s
// REQUIRES: executable_test
// CHECK: Hello World
// CHECK: Hello Bob, today is Tuesday.
@_inlineable
@_versioned
func greet(_ name: String, _ day: String) -> String {
return "Hello \(name), today is \(day)."
}
print("Hello World")
print(greet("Bob", "Tuesday"))