blob: b616cbae6ae97b9a22e35a4dc7791f9093cfcf7a [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion libraryDefinition:
* scriptTag? libraryName? importOrExport* partDirective* topLevelDefinition*
* ;
* @description Checks that it is a compile-error if an import directive
* comes before the library name.
* @compile-error
* @author msyabro
* @reviewer rodionov
*/
import "13_Libraries_and_Scripts_A04_t08_lib.dart";
library Libraries_and_Scripts_A04_t08;
main() {
try {
var someVar = 1;
} catch(e) {}
}