| Index: compiler/javatests/com/google/dart/compiler/type/class_with_type_parameter.dart
|
| diff --git a/compiler/javatests/com/google/dart/compiler/type/class_with_type_parameter.dart b/compiler/javatests/com/google/dart/compiler/type/class_with_type_parameter.dart
|
| index 48be4d3650777dab945ebd6a25eb290ec2e9576a..f61bf4ab203017979e6ea0b2ec148475f8e40ce1 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/type/class_with_type_parameter.dart
|
| +++ b/compiler/javatests/com/google/dart/compiler/type/class_with_type_parameter.dart
|
| @@ -2,9 +2,9 @@
|
| // 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.
|
|
|
| -interface A {}
|
| +abstract class A {}
|
|
|
| -interface B extends A {}
|
| +abstract class B extends A {}
|
|
|
| class ClassWithTypeParameter<T extends B> {
|
| A aField;
|
|
|