blob: 00e830031de09ddf193c08419f33b7c9e16e39c3 [file] [log] [blame]
class Const<T> {
final T value;
const Const(this.value);
}
main() {}
void test(dynamic value, bool expected) {}