mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
370 B
Swift
13 lines
370 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -index-store-path %t/idx -o %t/file.o -typecheck -primary-file %s -verify
|
|
|
|
protocol MyProto {
|
|
func compile() throws
|
|
}
|
|
|
|
func compile(x: MyProto) throws {
|
|
try x.compile
|
|
// expected-error@-1 {{function is unused}}
|
|
// expected-warning@-2 {{no calls to throwing functions occur within 'try' expression}}
|
|
}
|