blob: feeb7ca50b1749009334d1aee7d57153c7713e67 [file] [log] [blame]
// @dart = 2.9
library test;
T f<T>(T t) => t;
class C {
C(int p) : x = f(1 + p);
final x;
}
main() {}