blob: e530968f92c8de95b50a70e74a8be3e1227232d2 [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.
// @dart = 2.9
/// @assertion If a function does not declare a return type explicitly, its
/// return type is dynamic, unless it is a constructor function, in which case
/// its return type is the immediately enclosing class.
/// @description Checks that return type is dynamic. Static checker should not
/// cause static warnings because type Dynamic has every method and property.
/// @author msyabro
/// @reviewer kaigorodov
/// @reviewer rodionov
import "../../../Utils/expect.dart";
f() {}
g() {return 1;}
main() {
try {
f().someMethod();
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch (e) {}
try {
f().x;
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch (e) {}
try {
g().someMethod();
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch (e) {}
try {
g().x;
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch (e) {}
}