blob: c1dd118c5ddade02ee3df91a75ba490ee97f76e2 [file] [log] [blame]
// RUN: not %target-swift-frontend %s -typecheck
public class A {
var property: UndeclaredType
var keyPath: Any {
return #keyPath(property.foo)
}
}
public class B {
var property: UndeclaredType
var keyPath: Any {
return [#keyPath(property.foo)]
}
}