mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
263 B
Swift
12 lines
263 B
Swift
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) %s -typecheck -verify
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
class MyClass: NSObject {
|
|
func f() {
|
|
let url = URL(url) // expected-error{{variable used within its own initial value}}
|
|
}
|
|
}
|