blob: 840a902c42b1967ce9422d91c5f8a51ea4291f23 [file] [log] [blame]
// 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.
/**
* @assertion Let Sstatic be the superclass of the immediately enclosing class.
* ...
* If Sstatic.m does not exist, or if F is not a function type, the static
* type of i is Dynamic; otherwise the static type of i is the declared return
* type of F.
* @description Checks that the static type of a super invocation is Dynamic
* when F is not a function type (but can be assigned to it) by ensuring that
* there're no static warnings when a result of such invocation is being
* assigned to variables with various declared types.
* @static-clean
* @author rodionov
*/
// Requirements=nnbd-strong
import '../../../../Utils/expect.dart';
void testme() {}
class C {
Function obj = testme;
var dyn;
}
class S extends C {
void test() {
Expect.throws(() { String foo = super.obj(); });
Expect.throws(() { bool foo = super.obj(); });
Expect.throws(() { Object foo = super.obj(); });
Expect.throws(() { C foo = super.obj(); });
Expect.throws(() { List foo = super.obj(); });
Expect.throws(() { Map foo = super.obj(); });
}
}
main() {
new S().test();
}