Files
sdk/tests/language_2/void/generalized_void_usage_test.dart
T
Leaf Petersen b101a7d002 Add language versions to _2 test libraries
Change-Id: Ib33169c3e0ffc870915c189404074a1dea472546
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/196548
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Leaf Petersen <leafp@google.com>
2021-04-26 17:58:57 +00:00

40 lines
1.1 KiB
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.
// @dart = 2.9
// Dart test for static checks on situations where expressions of type void
// can be used. The point is simply that there are no compile-time errors.
// We need expressions of type `void`; `void x` would do, but using
// `void get x` will work with tools that do not yet handle `void x`.
void get x => null;
void use(dynamic x) {}
main() {
// In an expressionStatement `e;`, e may have type void.
x;
// In the initialization and increment expressions of a for-loop,
// `for (e1; e2; e3) {..}`, `e1` and `e3` may have type void.
for (x;; x) {
break;
}
// In a typeCast `e as T`, `e` may have type void.
var y = x as Object;
// In a parenthesized expression `(e)`, `e` may have type void.
(x);
// In a return statement `return e;`, when the return type of the
// innermost enclosing function is the type void, e may have type void.
void f() => x;
void g() {
return x;
}
}