| # 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 file. | |
| # Reproduce a crash. | |
| type: newworld | |
| worlds: | |
| - entry: main.dart | |
| errors: true | |
| sources: | |
| main.dart: | | |
| import 'lib.dart'; | |
| import 'nonexistingfile.dart'; | |
| class A implements B {} | |
| lib.dart: | | |
| class B implements C<NonExistingClass> {} | |
| class C<E> {} | |
| expectedLibraryCount: 2 |