mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
224 B
Swift
9 lines
224 B
Swift
// {"kind":"typecheck","signature":"swift::ClassDecl::isSuperclassOf(swift::ClassDecl const*) const"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
class a {
|
|
typealias b = <#type#>
|
|
}
|
|
class c< d > : a< > {
|
|
}
|
|
c.b
|