mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This is mainly to improve usability for Swift compiler developers. resolves rdar://99357128
10 lines
242 B
Swift
10 lines
242 B
Swift
// RUN: %target-swift-frontend -emit-parse %s
|
|
// RUN: %target-swift-frontend -dump-parse %s
|
|
|
|
// Also makes sure -emit-parse and -dump-parse are both valid.
|
|
|
|
// Make sure we don't do any Sema and don't crash.
|
|
extension X {
|
|
typealias Y = Z
|
|
}
|