| 12345678910111213141516171819202122232425262728293031323334353637 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/convert.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/class/fail_generic_method.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/fail_generic_method.carbon
- class I {}
- class Class(T:! type) {
- var a: T;
- fn F[self: Self](n: T);
- }
- // TODO: The follow-on errors here aren't great. Investigate whether we can
- // enter the scope anyway if the parameters don't match.
- // CHECK:STDERR: fail_generic_method.carbon:[[@LINE+15]]:17: error: type `<pattern for I>` of parameter 1 in redeclaration differs from previous parameter type `<pattern for type>` [RedeclParamDiffersType]
- // CHECK:STDERR: fn Class(unused N:! I).F[unused self: Self](unused n: T) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR: fail_generic_method.carbon:[[@LINE-10]]:13: note: previous declaration's corresponding parameter here [RedeclParamPrevious]
- // CHECK:STDERR: class Class(T:! type) {
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- // CHECK:STDERR: fail_generic_method.carbon:[[@LINE+8]]:39: error: name `Self` not found [NameNotFound]
- // CHECK:STDERR: fn Class(unused N:! I).F[unused self: Self](unused n: T) {}
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR:
- // CHECK:STDERR: fail_generic_method.carbon:[[@LINE+4]]:55: error: name `T` not found [NameNotFound]
- // CHECK:STDERR: fn Class(unused N:! I).F[unused self: Self](unused n: T) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- fn Class(unused N:! I).F[unused self: Self](unused n: T) {}
|