dart-sdk/pkg/front_end/testcases/argument_mismatch.dart
Peter von der Ahé 132d707f6a Implement context for messages and use it for argument mismatches.
Change-Id: Iebf1a1fa0450ab900a9d220bf82bdf0f940c0399
Reviewed-on: https://dart-review.googlesource.com/7714
Reviewed-by: Aske Simon Christensen <askesc@google.com>
2017-09-29 11:30:24 +00:00

14 lines
355 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.
/*@testedFeatures=warning,context*/
/*@context=CandidateFound*/ foo() {}
test() {
/*@warning=MethodNotFound*/ foo(null);
}
main() {}