blob: c8b76f0e9f57bd8e01f8ff9e5ce94ab5f6aa608b [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.
// Test that deferred loader analyzer doesn't trip over unused classes.
import "package:expect/expect.dart";
import 'dart:async';
@lazy import 'deferred_class_library.dart' as lib;
const lazy = const DeferredLibrary('deferred_class_library');
class Base {}
class DerivedNotUsed extends Base {}
main() {
}