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