blob: f5a9c2679d65aef4c95d59316af1b56bd39e8b56 [file] [log] [blame]
// Copyright (c) 2018, 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.
// @dart = 2.7
/*class: M:OutputUnit(1, {lib})*/
class M {}
typedef dynamic FF({M b});
const table = const <int, FF>{1: f1, 2: f2};
/*member: f1:OutputUnit(1, {lib})*/
dynamic f1({M b}) => null;
/*member: f2:OutputUnit(1, {lib})*/
dynamic f2({M b}) => null;