af5a466e3b
Change-Id: I7d2feab60295304377e48fddce901aea1c79ce19 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/112481 Reviewed-by: Stephen Adams <sra@google.com>
11 lines
351 B
Dart
11 lines
351 B
Dart
// Copyright (c) 2019, 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 'dart:async';
|
|
import 'package:expect/expect.dart';
|
|
|
|
main() {
|
|
Expect.subtype<void Function(), FutureOr<void Function()>>();
|
|
}
|