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