blob: 8157593caf7b29c413c1c8bd3525116e9b03716a [file] [log] [blame]
library test;
class C<T> {
C.optional(void func([T x])) {}
C.named(void func({T x})) {}
}
void optional_toplevel([x = const [0]]) {}
void named_toplevel({x = const [0]}) {}
main() {}