blob: d05cb2d372b30ec1959a03c1acb6d05655696aa0 [file] [log] [blame]
// Copyright (c) 2016, 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.
/// @assertion The static type of the expression super[e1] = e2 is the static
/// type of e2.
/// @description Checks that static type of super[e1] = e2 is static type of e2
/// @author sgrekhov@unipro.ru
class A {
operator []=(index, value) {}
}
class C extends A {
test() {
D d = (super[100] = new D());
}
}
class D {}
main() {
C c = new C();
c.test();
}