mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Avoid triggering the semantic `IsFinalRequest` and instead check for the presence of the final attribute. Resolves SR-13230.
7 lines
132 B
Swift
7 lines
132 B
Swift
// RUN: %target-swift-frontend -dump-parse %s
|
|
|
|
// Make sure we don't do any Sema and don't crash.
|
|
extension X {
|
|
typealias Y = Z
|
|
}
|