blob: 1cfbb36141df73a4c154227beedc5b75f199fa51 [file] [log] [blame]
// Copyright (c) 2021, 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.
class A {
A.foo1() {}
A.foo2(int x) {}
}
A Function() bar1() => A.foo1; // Ok.
A Function() bar2() => A.foo2; // Error.
main() {}