Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: tests/lib/async/future_or_only_in_async_test.dart

Issue 2564563003: Add tests for `FutureOr<T>`. (Closed)
Patch Set: Address comments. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/lib/async/future_or_only_in_async_test.dart
diff --git a/tests/lib/async/future_or_only_in_async_test.dart b/tests/lib/async/future_or_only_in_async_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..3e7d098a799f5ee6354a26c658288604c3edbf42
--- /dev/null
+++ b/tests/lib/async/future_or_only_in_async_test.dart
@@ -0,0 +1,17 @@
+// Copyright (c) 2016, 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.
+
+// `FutureOr<T>` is only visible when `dart:async` is imported.
+
+T foo<T>(T x) {
+ return x as
+ FutureOr< /// 00: runtime error, static type warning
+ T
+ > /// 00: continued
+ ;
+}
+
+main() {
+ if (499 != foo<int>(499)) throw "bad";
+}

Powered by Google App Engine
This is Rietveld 408576698