blob: 6b2f13c1672b16a727b832e49dbc496c64a34242 [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.
class A {
var a;
A() {
a = 2;
}
}
main() {
Expect.equals(2, new A().a);
}