blob: 1af8730d4eadb720321a7cea3e73e33900128e39 [file] [log] [blame]
// Copyright (c) 2022, 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 foo() => print('foo');
class Bar {
void call() {}
}
main() {
var r = (foo, Bar());
r.$1();
r.$2();
}