blob: 5448b6ca96c93ff0b93c9ea0f6d2d3d13005a35d [file] [log] [blame]
// Copyright (c) 2015, 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.
// test w/ `dart test -N package_api_docs`
abstract class Foo //__LINT => TODO: fix API Model to treat tests specially
{
/// Start a bar.
bar(); //OK
foo() => new _Bar().baz(); //__LINT
}
class _Bar //OK
{
baz() => 42; //OK
}