Files
sdk/tests/language/super/call2_test.dart
T
Robert Nystrom 1d7033aa4b Migrate language_2/super to NNBD.
Change-Id: Ib7913221d11f795be8e415c10cbeb6a6f02143af
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/151465
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Srujan Gaddam <srujzs@google.com>
2020-06-17 19:57:13 +00:00

41 lines
905 B
Dart

// Copyright (c) 2011, 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.
// Regresion test for bug discovered in frog handling super calls: the test case
// mixes generics, super calls, and purposely doesn't allocate the base type.
//
// Also is a regression test for https://github.com/dart-lang/sdk/issues/31973
import 'package:expect/expect.dart';
class C<T> {
foo(T a) {}
}
class D<T> extends C<T> {
foo(T a) {
super.foo(a); // used to be resolved incorrectly and generate this.foo(a).
}
}
class A {
static int _value = -1;
Function foo = (int x) => _value = x + 1;
}
class B extends A {
void m(int x) {
super.foo(x);
}
}
main() {
var d = new D();
d.foo(null);
var b = new B();
b.m(41);
Expect.equals(42, A._value);
}