blob: d12230ce44f261d6bec8e588f25d5defbdf04839 [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.
void main() {
void x;
int i;
int? iq;
x!; //# 00: compile-time error
i!; //# 01: compile-time error
iq!; //# 02: runtime error
}