dart-sdk/tests/language_2/setter_no_getter_call_test.dart
Kevin Millikin 1b1fe0be35 Fix a broken language_2 test
As far as I can tell, both of these are intended to be compile-time
errors and not run-time errors.

Change-Id: I7c3ee8b1431d954b3b74e668c88517dc032cd8ce
Reviewed-on: https://dart-review.googlesource.com/41700
Commit-Queue: Kevin Millikin <kmillikin@google.com>
Reviewed-by: Erik Ernst <eernst@google.com>
2018-02-19 11:30:07 +00:00

27 lines
589 B
Dart

// Copyright (c) 2012, 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.
import "package:expect/expect.dart";
var topLevelClosure;
/* //# 01: compile-time error
get topLevel => topLevelClosure;
*/ //# 01: continued
set topLevel(var value) {}
initialize() {
print("initializing");
topLevelClosure = (x) => x * 2;
}
main() {
initialize();
var x = topLevelClosure(2);
Expect.equals(4, x);
x = topLevel(3);
Expect.equals(6, x);
}