712efa2a49
Closes #41597 Change-Id: I781d70d7cd720ab09d68a22ead1639bf37953955 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/144941 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
20 lines
349 B
Dart
20 lines
349 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.
|
|
|
|
bool x;
|
|
bool x;
|
|
|
|
errors() {
|
|
print(x);
|
|
print(x!);
|
|
print(!x);
|
|
}
|
|
|
|
class C {
|
|
C.c0() : super();
|
|
C.c1() : super()!;
|
|
}
|
|
|
|
main() {}
|