Skip to content

Commit

Permalink
Fixes #2726. Update expected errors positions (#2727)
Browse files Browse the repository at this point in the history
Update expected errors positions
  • Loading branch information
sgrekhov authored Jun 28, 2024
1 parent 8139ba7 commit e96bee4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ abstract interface class I<T> {
abstract class A implements I<int> {}

abstract class C implements I<String> {}
// ^
// [analyzer] unspecified
// [cfe] unspecified

main() {
print(C);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,3 @@
augment library 'augmenting_types_A06_t04.dart';

augment abstract class C extends A {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ class A {
}

class C with M {}
// ^
// [analyzer] unspecified
// [cfe] unspecified

main() {
print(C);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,3 @@
augment library 'augmenting_types_A06_t05.dart';

augment class C extends A {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
import augment 'augmenting_types_A06_t06_lib.dart';

class C {}
// ^
// [analyzer] unspecified
// [cfe] unspecified

main() {
print(C);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,3 @@
augment library 'augmenting_types_A06_t06.dart';

augment class C extends C {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,3 @@ augment library 'augmenting_types_A06_t07.dart';
augment class C1 extends A {}

augment abstract class C2 extends A {}
// ^
// [analyzer] unspecified
// [cfe] unspecified

0 comments on commit e96bee4

Please sign in to comment.