blob: f56a0d9552e215acde2522bed436b89a15462bfe [file] [log] [blame]
class A<T> {
T? _current;
T get current => _current as T;
}
main() {}