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