blob: af6edf3a502633f42ee6f539b2627060b460ed90 [file] [log] [blame]
library test;
typedef T Function2<S, T>([S x]);
class Foo {
List<int> x;
Foo([this.x = const [1]]);
Foo.named([List<int> x = const [1]]);
}
void f([List<int> l = const [1]]) {}
Function2<List<int>, String> g = ([llll = const [1]]) => "hello";
main() {}