blob: 43cb23a2573547143af4b7e445d860a2931712d8 [file] [log] [blame]
/*
* Copyright (c) 2015, 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.
*/
library syntax_lib1;
const X = 'No';
class A {
const A();
}
class B<T> {
const B();
const B.b(T t);
}
class Foo {
const Foo(int x, int y);
}
enum E {a, b, c}