dart-sdk/tests/language/void_arrow_return_test.dart
Erik Ernst 8aef60a78f Included setters in testing of the void => return-any-type feature.
The older issue https://github.com/dart-lang/sdk/issues/28939 did not
mention setters. They were already covered in the implementation, so
this CL just adds testing for it.

Addresses issue https://github.com/dart-lang/sdk/issues/29680.

R=floitsch@google.com, johnniwinther@google.com

Review-Url: https://codereview.chromium.org/2899683003 .
2017-05-24 09:36:48 +02:00

14 lines
370 B
Dart

// Copyright (c) 2017, 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.
// Testing that a void arrow function is allowed to return any type of value.
void foo() => 42;
void set bar(x) => 43;
main() {
foo();
bar = 44;
}