blob: 105d698e426da13804f1d1a92e6e24891cd53174 [file] [log] [blame]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/*@testedFeatures=inference*/
library test;
import 'dart:async';
T f<T>() => null;
class B {
num operator [](int x) => null;
}
class C extends B {
int operator [](Object x) => null;
void h() {
var /*@ type=num* */ x = super /*@target=B.[]*/ [/*@ typeArgs=int* */ f()];
}
}
main() {}