| Index: tests/language/super_call4_test.dart
|
| diff --git a/tests/language/super_call4_test.dart b/tests/language/super_call4_test.dart
|
| index f353f484f6ad974b873fe7e25b9445493fadddad..f5ce7c28b590d3b972c138115879fd9355bb6c54 100644
|
| --- a/tests/language/super_call4_test.dart
|
| +++ b/tests/language/super_call4_test.dart
|
| @@ -6,15 +6,13 @@
|
| // current class.
|
|
|
| class C {
|
| - // bool noSuchMethod(InvocationMirror im) { // Issue 3622
|
| - bool noSuchMethod(String function_name, List args) {
|
| + bool noSuchMethod(InvocationMirror im) {
|
| return true;
|
| }
|
| }
|
|
|
| class D extends C {
|
| - // bool noSuchMethod(InvocationMirror im) { // Issue 3622
|
| - bool noSuchMethod(String function_name, List args) {
|
| + bool noSuchMethod(InvocationMirror im) {
|
| return false;
|
| }
|
| test() {
|
|
|