dart-sdk/tests/language/inst_field_initializer1_negative_test.dart
lrn@google.com 6b4f4b1bab Change new List(n) to return fixed length list.
Deprecate List.fixedLength, add List.filled.

Make Iterable.toList and List.from take "growable" argument,
defaulting to false.

Review URL: https://codereview.chromium.org//12328104

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@19112 260f80e4-7a28-3924-810f-c04153c831b5
2013-02-27 08:45:04 +00:00

17 lines
476 B
Dart

// 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.
// Catch illegal access to 'this' in initalized instance fields.
class A {
A() {}
int x = 5;
int arr = new List(x); // Illegal access to 'this'.
// Also not a compile const expression.
}
void main() {
var foo = new A();
}