blob: 0cd8e04b91c3eb7f72dfc6fc72b3b7d2cdc386f4 [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 libraryName:
* metadata library identifier (‘.’ identifier)* ‘;’
* ;
* An explicitly named library begins with the word library (possibly prefaced
* with any applicable metadata annotations), followed by a qualified identifier
* that gives the name of the library.
* @description Checks that it is a compile-time error when the library name is
* enclosed in single quotes.
* @compile-error
* @author rodionov
* @reviewer kaigorodov
*/
import "13_Libraries_and_Scripts_A03_t08_lib.dart";
main() {
try {
var someVar = 1;
} catch(e) {}
}