blob: 091014ba65c574f83f1abf5fe60e675bd48fd7e7 [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.
// @dart=2.9
/*@testedFeatures=inference*/
library test;
class Index {}
class A {}
class B extends A {
A operator +(C v) => null;
B operator -(int i) => null;
B operator *(B v) => null;
C operator &(A v) => null;
}
class C extends B {}
T f<T>() => null;
class Base {
B operator [](Index i) => null;
void operator []=(Index i, B v) {}
}
class Test extends Base {
void test() {
super /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()] = /*@typeArgs=B**/ f();
super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
??= /*@typeArgs=B**/ f();
super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
/*@target=B.+*/ += /*@typeArgs=C**/ f();
super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
/*@target=B.**/ *= /*@typeArgs=B**/ f();
super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
/*@target=B.&*/ &= /*@typeArgs=A**/ f();
/*@target=B.-*/ --super /*@target=Base.[]*/ /*@target=Base.[]=*/
[/*@typeArgs=Index**/ f()];
super /*@target=Base.[]*/ /*@target=Base.[]=*/
[/*@typeArgs=Index**/ f()] /*@target=B.-*/ --;
var /*@type=B**/ v1 = super /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()] = /*@typeArgs=B**/ f();
var /*@type=B**/ v2 = super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
??= /*@typeArgs=B**/ f();
var /*@type=A**/ v3 = super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
/*@target=B.+*/ += /*@typeArgs=C**/ f();
var /*@type=B**/ v4 = super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
/*@target=B.**/ *= /*@typeArgs=B**/ f();
var /*@type=C**/ v5 = super /*@target=Base.[]*/ /*@target=Base.[]=*/ [
/*@typeArgs=Index**/ f()]
/*@target=B.&*/ &= /*@typeArgs=A**/ f();
var /*@type=B**/ v6 = /*@target=B.-*/ --super
/*@target=Base.[]*/ /*@target=Base.[]=*/ [/*@typeArgs=Index**/ f()];
var /*@type=B**/ v7 = super /*@target=Base.[]*/ /*@target=Base.[]=*/
[/*@typeArgs=Index**/ f()] /*@target=B.-*/ --;
}
}
main() {}