mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
223 B
Swift
8 lines
223 B
Swift
// RUN: %swift -verify -parse %s
|
|
|
|
func rejectsStringLiteral() {
|
|
assert("foo") // expected-error {{cannot convert the expression's type}}
|
|
precondition("foo") // expected-error {{cannot convert the expression's type}}
|
|
}
|
|
|