/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
toolchain/parse/testdata/match/fail_missing_case_pattern.carbon
47 строк
2 KB
Geoff Romer
Make the tree structure more explicit in parse dumps (#7591)
31 июл 2026, 19:44
Не верифицирован
31 июл 2026, 19:44
6429c16
Код
Авторство
О чём код?
// 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/parse/testdata/match/fail_missing_case_pattern.carbon // TIP: To dump output, run: // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/parse/testdata/match/fail_missing_case_pattern.carbon fn f() -> i32 { match (3) { // CHECK:STDERR: fail_missing_case_pattern.carbon:[[@LINE+4]]:10: error: expected pattern [ExpectedPattern] // CHECK:STDERR: case => { return 2; } // CHECK:STDERR: ^~ // CHECK:STDERR: case => { return 2; } } return 0; } // CHECK:STDOUT: - filename: fail_missing_case_pattern.carbon // CHECK:STDOUT: ╭─FileStart '' // CHECK:STDOUT: │ ╭─FunctionIntroducer 'fn' // CHECK:STDOUT: │ ├─IdentifierNameMaybeBeforeSignature 'f' // CHECK:STDOUT: │ │ ╭─ExplicitParamListStart '(' // CHECK:STDOUT: │ ├─ExplicitParamList ')' // CHECK:STDOUT: │ │ ╭─IntTypeLiteral 'i32' // CHECK:STDOUT: │ ├─ReturnType '->' // CHECK:STDOUT: │ ╭─FunctionDefinitionStart '{' // CHECK:STDOUT: │ │ ╭─MatchIntroducer 'match' // CHECK:STDOUT: │ │ │ ╭─MatchConditionStart '(' // CHECK:STDOUT: │ │ │ ├─IntLiteral '3' // CHECK:STDOUT: │ │ ├─MatchCondition ')' // CHECK:STDOUT: │ │ ╭─MatchStatementStart '{' // CHECK:STDOUT: │ │ │ ╭─MatchCaseIntroducer 'case' // CHECK:STDOUT: │ │ │ ├─InvalidParse '=>' has_error // CHECK:STDOUT: │ │ │ ╭─MatchCase '=>' has_error // CHECK:STDOUT: │ │ │ ╭─MatchHandlerStart '=>' has_error // CHECK:STDOUT: │ │ ├─MatchHandler '=>' has_error // CHECK:STDOUT: │ ├─MatchStatement '}' // CHECK:STDOUT: │ │ ╭─ReturnStatementStart 'return' // CHECK:STDOUT: │ │ ├─IntLiteral '0' // CHECK:STDOUT: │ ├─ReturnStatement ';' // CHECK:STDOUT: ├─FunctionDefinition '}' // CHECK:STDOUT: ├─FileEnd '' // CHECK:STDOUT: (root)