blob: 22aa8636b6d60bd700dfdb8a3fc10edfcf7cb173 [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 If no return type is specified, the return type of the getter is
* dynamic.
* @description Checks that no static warnings are produced when trying to
* access various non-existent members and properties of value returned by the
* tested getter. It means that the return type of the getter is dynamic.
* @static-clean
* @author iefremov
*/
import "../../../Utils/expect.dart";
class C {
get foo {}
}
main() {
C c = new C();
Expect.throws(() {c.foo.abyr = null;}, (e) => e is NoSuchMethodError);
Expect.throws(() {c.foo.abyr(1, 2, 3);}, (e) => e is NoSuchMethodError);
Expect.throws(() {c.foo.abyrvalg = null;}, (e) => e is NoSuchMethodError);
}