blob: 3887a59d18515d0483d01c783f9cb636ee1ab717 [file] [log] [blame]
// @dart = 2.6
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() {}