blob: 22e587fcd446374bb8afc5c6f3f5c1b65b7acbb7 [file] [log] [blame]
enum E<X, Y> {
one<int, String>(),
two<double, num>(),
three<int, int>.named(42),
four<num, bool>();
const E();
const E.named(int value);
}
main() {}