blob: ed326a0e4983834e57e72800ac6949ad5ac700a7 [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.
// Check that an unresolved field in an initializer is an error.
class A {
A() : this.a = 1 {}
}