Files
sdk/pkg/analyzer/test/generated/invalid_code_kernel_test.dart
T
Konstantin Shcheglov 670c288711 Issue 32162. Fix for crash in generic function type argument of unresolved class.
R=brianwilkerson@google.com

Bug: https://github.com/dart-lang/sdk/issues/32162
Change-Id: I0a2df5bf5a08b52a7eb47e1b8265b9bbbf65e599
Reviewed-on: https://dart-review.googlesource.com/41922
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
2018-02-16 01:01:16 +00:00

38 lines
954 B
Dart

// Copyright (c) 2017, 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.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'invalid_code_test.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(InvalidCodeTest_Kernel);
});
}
@reflectiveTest
class InvalidCodeTest_Kernel extends InvalidCodeTest {
@override
bool get enableKernelDriver => true;
@override
bool get enableNewAnalysisDriver => true;
@override
bool get useCFE => true;
@failingTest
@override
test_constructorAndMethodNameCollision() async {
return super.test_constructorAndMethodNameCollision();
}
@failingTest
@override
test_genericFunction_asTypeArgument_ofUnresolvedClass() async {
return super.test_genericFunction_asTypeArgument_ofUnresolvedClass();
}
}