mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
413 B
Swift
9 lines
413 B
Swift
// RUN: %target-typecheck-verify-swift -swift-version 6
|
|
|
|
struct LocalStruct {}
|
|
protocol LocalProtocol {}
|
|
|
|
extension LocalStruct: @retroactive LocalProtocol {} // expected-error {{'retroactive' attribute does not apply; 'LocalStruct' is declared in this module}}
|
|
|
|
extension Int: @retroactive LocalProtocol {} // expected-error {{'retroactive' attribute does not apply; 'LocalProtocol' is declared in this module}}
|