blob: 6fe33a402fe116543efdf1e417ab51f0f7e42561 [file] [log] [blame]
// @dart = 2.18
class Const<T> {
const Const(this.value);
final T value;
}
main() {}
void test(dynamic value, bool expected) {}