| 1234567891011121314151617181920212223242526272829 |
- // 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
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/struct/fail_keyword_name.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/struct/fail_keyword_name.carbon
- // CHECK:STDERR: fail_keyword_name.carbon:[[@LINE+8]]:13: ERROR: Expected identifier after `.`.
- // CHECK:STDERR: fn F() -> {.class: i32};
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR:
- // CHECK:STDERR: fail_keyword_name.carbon:[[@LINE+4]]:13: ERROR: Semantics TODO: `Error recovery from keyword name.`.
- // CHECK:STDERR: fn F() -> {.class: i32};
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR:
- fn F() -> {.class: i32};
- // CHECK:STDERR: fail_keyword_name.carbon:[[@LINE+3]]:19: ERROR: Expected identifier after `.`.
- // CHECK:STDERR: fn G() { return {.return = 5}; };
- // CHECK:STDERR: ^~~~~~
- fn G() { return {.return = 5}; };
- // CHECK:STDOUT: --- fail_keyword_name.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {}
- // CHECK:STDOUT:
|