043bebcd02
Change-Id: I440dddd34a62bfe8c0f3fd563888acb680c2b031 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/168141 Commit-Queue: Joshua Litt <joshualitt@google.com> Reviewed-by: Sigmund Cherem <sigmund@google.com>
19 lines
447 B
Dart
19 lines
447 B
Dart
// Copyright (c) 2020, 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: B:
|
|
class_unit=1{lib},
|
|
type_unit=main{}
|
|
*/
|
|
/*member: B.:member_unit=1{lib}*/
|
|
class B {
|
|
/*member: B.value:member_unit=1{lib}*/
|
|
B value = null;
|
|
}
|
|
|
|
/*member: list:member_unit=1{lib}*/
|
|
List<B> list = [];
|