Chromium Code Reviews| Index: tests/language/src/PrivateMember1NegativeTest.dart |
| diff --git a/tests/language/src/PrivateMember1NegativeTest.dart b/tests/language/src/PrivateMember1NegativeTest.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bb9b1d5be9301a5c7864e8c104a0196a21662a34 |
| --- /dev/null |
| +++ b/tests/language/src/PrivateMember1NegativeTest.dart |
| @@ -0,0 +1,19 @@ |
| +// 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. |
| + |
| +#library('PrivateMemberLibA'); |
| + |
| +#import('PrivateMemberLibB1.dart'); |
|
ahe
2012/04/13 13:45:17
This file does not exist.
|
| + |
| +class A {} |
| + |
| +class Test extends B { |
| + test() { |
| + _instanceField = true; |
| + } |
| +} |
| + |
| +void main() { |
| + new Test().test(); |
| +} |