d5650235a2
Closes #41787 Change-Id: I81fcf0aee975b58b3b44d0de94054ae87bdd265d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/147140 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
10 lines
276 B
Dart
10 lines
276 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.md file.
|
|
|
|
x.y = 42;
|
|
x.z = true;
|
|
void foo() {
|
|
if (x != null) {}
|
|
}
|