blob: 8233c1090707202d35869444fcba2edc46efc34b [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.
import 'package:expect/expect.dart';
void main() {
// Null condition expression.
bool nullBool = null;
Expect.throwsAssertionError(() => <int>[for (; nullBool;) 1]);
Expect.throwsAssertionError(() => <int, int>{for (; nullBool;) 1: 1});
Expect.throwsAssertionError(() => <int>{for (; nullBool;) 1});
}