blob: 8b5578718b34cf4be73fd2970da4bcbcaaad799f [file] [log] [blame]
// @dart = 2.9
library test;
class C {
int field = 0;
int get getter => 0;
int function() => 0;
}
C c = new C();
var function_ref = c.function;
var function_ref_list = [c.function];
main() {}