blob: 763d098f7f0d433666898e9e7d2c7e6e59939cb2 [file] [log] [blame]
// 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.
void main() {
foo(/*bc:1*/ bar());
/*nbb:0:3*/
}
foo(int bar, {int /*bc:2*/ baz}) {
/*bc:3*/ print("foo!");
}
int bar() {
return 42;
}