blob: 37196010054a931a5b97a57860bfe1f4e802c7d1 [file] [log] [blame]
// Copyright (c) 2013, 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.
// @dart = 2.7
// Test that deferred loader analyzer doesn't trip over unused classes.
import "package:expect/expect.dart";
import 'dart:async';
import 'deferred_class_library.dart' deferred as lib;
class Base {}
class DerivedNotUsed extends Base {}
main() {}