You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: toolchain/check/testdata/class/virtual_modifiers.carbon
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -416,12 +416,12 @@ base class Base(T:! type) {
416
416
417
417
class D1 {
418
418
extend base: Base(T1);
419
-
// CHECK:STDERR: fail_impl_generic_specifically_mismatch.carbon:[[@LINE+7]]:29: error: type `<pattern for T2*>` of parameter 1 in redeclaration differs from previous parameter type `<pattern for T1*>` [RedeclParamDiffersType]
419
+
// CHECK:STDERR: fail_impl_generic_specifically_mismatch.carbon:[[@LINE+7]]:36: error: type `<pattern for T2*>` of parameter 1 in redeclaration differs from previous parameter type `<pattern for T1*>` [RedeclParamDiffersType]
@@ -435,12 +435,12 @@ abstract class Base(T:! type) {
435
435
}
436
436
class Derived(T:!type) {
437
437
extend base: Base(T);
438
-
// CHECK:STDERR: fail_impl_generic_generic_mismatch.carbon:[[@LINE+7]]:29: error: type `<pattern for T>` of parameter 1 in redeclaration differs from previous parameter type `<pattern for T*>` [RedeclParamDiffersType]
438
+
// CHECK:STDERR: fail_impl_generic_generic_mismatch.carbon:[[@LINE+7]]:36: error: type `<pattern for T>` of parameter 1 in redeclaration differs from previous parameter type `<pattern for T*>` [RedeclParamDiffersType]
Copy file name to clipboardExpand all lines: toolchain/check/testdata/deduce/array.carbon
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -93,9 +93,9 @@ fn G() -> i32 {
93
93
// CHECK:STDERR: fail_type_mismatch.carbon:[[@LINE+7]]:12: note: type `array(D, 3)` does not implement interface `Core.ImplicitAs(array(C, 3))` [MissingImplInMemberAccessNote]
94
94
// CHECK:STDERR: return F(a);
95
95
// CHECK:STDERR: ^
96
-
// CHECK:STDERR: fail_type_mismatch.carbon:[[@LINE-11]]:29: note: initializing function parameter [InCallToFunctionParam]
96
+
// CHECK:STDERR: fail_type_mismatch.carbon:[[@LINE-11]]:36: note: initializing function parameter [InCallToFunctionParam]
Copy file name to clipboardExpand all lines: toolchain/check/testdata/deduce/binding_pattern.carbon
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,9 @@ fn F(U:! type, V:! type) {
27
27
// CHECK:STDERR: fail_incompatible_deduce.carbon:[[@LINE+7]]:15: note: type `{}` does not implement interface `Core.ImplicitAs(V)` [MissingImplInMemberAccessNote]
28
28
// CHECK:STDERR: C(V).Create({});
29
29
// CHECK:STDERR: ^~
30
-
// CHECK:STDERR: fail_incompatible_deduce.carbon:[[@LINE-10]]:13: note: initializing function parameter [InCallToFunctionParam]
30
+
// CHECK:STDERR: fail_incompatible_deduce.carbon:[[@LINE-10]]:20: note: initializing function parameter [InCallToFunctionParam]
31
31
// CHECK:STDERR: fn Create(unused value: T) {}
32
-
// CHECK:STDERR: ^~~~~~~~~~~~~~~
32
+
// CHECK:STDERR: ^~~~~~~~
33
33
// CHECK:STDERR:
34
34
C(V).Create({});
35
35
}
@@ -50,9 +50,9 @@ fn F(U:! type, V:! type where {} impls Core.ImplicitAs(.Self)) {
50
50
// CHECK:STDERR: fail_todo_compatible_deduce.carbon:[[@LINE+7]]:15: note: type `{}` does not implement interface `Core.ImplicitAs(V)` [MissingImplInMemberAccessNote]
51
51
// CHECK:STDERR: C(V).Create({});
52
52
// CHECK:STDERR: ^~
53
-
// CHECK:STDERR: fail_todo_compatible_deduce.carbon:[[@LINE-11]]:13: note: initializing function parameter [InCallToFunctionParam]
53
+
// CHECK:STDERR: fail_todo_compatible_deduce.carbon:[[@LINE-11]]:20: note: initializing function parameter [InCallToFunctionParam]
Copy file name to clipboardExpand all lines: toolchain/check/testdata/function/call/fail_param_type.carbon
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ fn F() {
21
21
// CHECK:STDERR: fail_param_type.carbon:[[@LINE+7]]:5: note: type `Core.FloatLiteral` does not implement interface `Core.ImplicitAs(i32)` [MissingImplInMemberAccessNote]
22
22
// CHECK:STDERR: G(1.0);
23
23
// CHECK:STDERR: ^~~
24
-
// CHECK:STDERR: fail_param_type.carbon:[[@LINE-9]]:6: note: initializing function parameter [InCallToFunctionParam]
24
+
// CHECK:STDERR: fail_param_type.carbon:[[@LINE-9]]:13: note: initializing function parameter [InCallToFunctionParam]
0 commit comments