blob: 09978e70b3f50c7f16f0ff7e54997919d7352ded [file] [log] [blame]
// RUN: not %target-swift-frontend %s -typecheck
class N {}
class C {
var number: N!
var int64: Int64 = 0
}
let c: C? = C()
_ = (c!.number ?? 0) == (c?.int64 ?? 0)