blob: 8596052457cd367134ee5921ad01a1542045c72b [file] [log] [blame]
library test;
T f<T>(T t) => t;
class C {
C(int p) : x = f(p);
final x;
}
main() {}