blob: cfb824552053925924792db05adbe18020cd5311 [file] [log] [blame]
# Copyright (c) 2021, 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.
# Reproduce a crash.
type: newworld
worlds:
- entry: main.dart
errors: true
sources:
main.dart: |
// @dart=2.9
import 'lib.dart';
import 'nonexistingfile.dart';
class A implements B {}
lib.dart: |
// @dart=2.9
class B implements C<NonExistingClass> {}
class C<E> {}
expectedLibraryCount: 2