// @dart = 2.9 library test; T f() => null; class C { C.expressionOnly() : assert(f()); C.expressionAndMessage() : assert(f(), f()); } main() {}