blob: 9b4e9d3898550d6ce6d8d88f2dea8b681bb750b0 [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 the library name can be a qualified identifier
* @author kaigorodov
* @reviewer rodionov
*/
library Libraries.and.Scripts.A03.t18.lib;
main() {
try {
var someVar = 1;
} catch(e) {}
}