blob: 6b1018fb76a32a852996ed60c737b1a64e86e902 [file] [log] [blame]
const int hest = 42;
class Fisk<T> {
final T x;
const Fisk.fisk(this.x);
}
enum Foo {
@hest
bar,
@Fisk.fisk(hest)
baz,
cafebabe,
}
main() {}