blob: 502dd44792b3f200648be182dc9ffde9667ada1c [file] [log] [blame]
/*
* Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion A property access e?.f translates to:
* SHORT[EXP(e), fn[x] => x.f]
*
* @description Check that a property access e?.f translates to:
* SHORT[EXP(e), fn[x] => x.f]
* @static-warning
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=non-nullable
import "../../Utils/expect.dart";
class A {
String test = "Lily was here";
}
main() {
A a = new A();
Expect.equals("Lily was here", a?.test); /// static type warning
String s = "Let it be";
Expect.isNotNull(s?.hashCode); /// static type warning
}