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