blob: 68936f1871c02b2fa01c167309f9b9bdbcd2905b [file] [log] [blame]
// Copyright (c) 2014, 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.
/// A test for message extraction and code generation not using deferred
/// loading for the generated code.
library message_extraction_no_deferred_test;
import 'message_extraction_test.dart' as mainTest;
main(arguments) {
mainTest.useDeferredLoading = false;
mainTest.main(arguments);
}