2af5aec84e
Closes #39822. Bug: http://dartbug.com/39822 Change-Id: I9600efcd4e69e331de5d9fa8f2b676c402df6502 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/128661 Reviewed-by: Johnni Winther <johnniwinther@google.com> Commit-Queue: Dmitry Stefantsov <dmitryas@google.com>
12 lines
270 B
Dart
12 lines
270 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.
|
|
|
|
foo(Null x) {
|
|
bar(x!);
|
|
}
|
|
|
|
bar(int y) {}
|
|
|
|
main() {}
|