blob: b6aecb3078e414d53f7f98c3a4b6db64b18ed51e [file] [log] [blame] [edit]
// 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.
library test;
T f<T>() => throw '';
class C {
void test() {
/*var /*@type=dynamic*/ v1 = super.foo(/*@typeArgs=dynamic*/ f());
var /*@type=dynamic*/ v2 = super.bar;
var /*@type=dynamic*/ v3 = super[0];
var /*@type=dynamic*/ v4 = super.bar = /*@typeArgs=dynamic*/ f();*/
var v5 = super[0] = f();
}
}
main() {}