blob: 02b7e4b3e46e2a954b11797dad77f5fbdf430244 [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 A library consists of (a possibly empty) set of imports, asset of exports, and a set of top level
* declarations. A top level declaration is either a class, a type alias declaration, a function
* or a variable declaration.
* topLevelDefinition:
* classDefinition |
* typeAlias |
* external? functionSignature |
* external? getterSignature |
* external? setterSignature |
* functionSignature functionBody |
* returnType? getOrSet identifier formalParameterList function-Body |
* (final | const) type? staticFinalDeclarationList ';' |
* variableDeclaration ';'
* ;
* getOrSet:
* get |
* set
* ;.
* @description Checks that a lone colon character can't be a top level definition in a library.
* @compile-error
* @author msyabro
* @reviewer rodionov
*/
import '13_Libraries_and_Scripts_A01_t17_lib.dart';
main() {
try {
var someVar = '';
} catch(e) {}
}