mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
208 B
Swift
11 lines
208 B
Swift
// {"kind":"typecheck","signature":"swift::AbstractStorageDecl::getValueInterfaceType() const"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
class a {
|
|
}
|
|
{
|
|
lazy var b = {
|
|
c
|
|
}
|
|
var c = a
|
|
}
|