mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
6 lines
182 B
Swift
6 lines
182 B
Swift
// RUN: %target-typecheck-verify-swift -swift-version 4
|
|
|
|
extension X { } // expected-error {{cannot find type 'X' in scope}}
|
|
_ = 1
|
|
f() // expected-error {{cannot find 'f' in scope}}
|