blob: 0d00710376f1a18c7c4afe006d07bac5569f9bbc [file] [log] [blame]
// Copyright (c) 2019, 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
import 'lib3.dart';
/*class: A:
class_unit=1{lib1},
type_unit=1{lib1}
*/
class A<T> {
const A();
}
/*class: B:
class_unit=none,
type_unit=1{lib1}
*/
class B {}
const dynamic field1 = const A<B>();
const dynamic field2 = const A<F>();