fail_errors.carbon 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. // RUN: %{not} %{carbon-run-parser}
  7. // CHECK:STDOUT: [
  8. // CHECK:STDOUT: {node_index: 26, kind: 'FunctionDefinition', text: '}', subtree_size: 27, children: [
  9. // CHECK:STDOUT: {node_index: 4, kind: 'FunctionDefinitionStart', text: '{', subtree_size: 5, children: [
  10. // CHECK:STDOUT: {node_index: 0, kind: 'FunctionIntroducer', text: 'fn'},
  11. // CHECK:STDOUT: {node_index: 1, kind: 'DeclaredName', text: 'F'},
  12. // CHECK:STDOUT: {node_index: 3, kind: 'ParameterList', text: '(', subtree_size: 2, children: [
  13. // CHECK:STDOUT: {node_index: 2, kind: 'ParameterListEnd', text: ')'}]}]},
  14. // CHECK:STDOUT: {node_index: 8, kind: 'IfStatement', text: 'if', has_error: yes, subtree_size: 4, children: [
  15. // CHECK:STDOUT: {node_index: 5, kind: 'NameReference', text: 'a'},
  16. // CHECK:STDOUT: {node_index: 7, kind: 'CodeBlock', text: '}', subtree_size: 2, children: [
  17. // CHECK:STDOUT: {node_index: 6, kind: 'CodeBlockStart', text: '{'}]}]},
  18. // CHECK:STDOUT: {node_index: 13, kind: 'IfStatement', text: 'if', subtree_size: 5, children: [
  19. // CHECK:STDOUT: {node_index: 10, kind: 'Condition', text: '(', has_error: yes, subtree_size: 2, children: [
  20. // CHECK:STDOUT: {node_index: 9, kind: 'ConditionEnd', text: ')'}]},
  21. // CHECK:STDOUT: {node_index: 12, kind: 'CodeBlock', text: '}', subtree_size: 2, children: [
  22. // CHECK:STDOUT: {node_index: 11, kind: 'CodeBlockStart', text: '{'}]}]},
  23. // CHECK:STDOUT: {node_index: 19, kind: 'IfStatement', text: 'if', subtree_size: 6, children: [
  24. // CHECK:STDOUT: {node_index: 16, kind: 'Condition', text: '(', has_error: yes, subtree_size: 3, children: [
  25. // CHECK:STDOUT: {node_index: 14, kind: 'NameReference', text: 'b'},
  26. // CHECK:STDOUT: {node_index: 15, kind: 'ConditionEnd', text: ')'}]},
  27. // CHECK:STDOUT: {node_index: 18, kind: 'CodeBlock', text: '}', subtree_size: 2, children: [
  28. // CHECK:STDOUT: {node_index: 17, kind: 'CodeBlockStart', text: '{'}]}]},
  29. // CHECK:STDOUT: {node_index: 25, kind: 'IfStatement', text: 'if', subtree_size: 6, children: [
  30. // CHECK:STDOUT: {node_index: 22, kind: 'Condition', text: '(', subtree_size: 3, children: [
  31. // CHECK:STDOUT: {node_index: 20, kind: 'NameReference', text: 'd'},
  32. // CHECK:STDOUT: {node_index: 21, kind: 'ConditionEnd', text: ')'}]},
  33. // CHECK:STDOUT: {node_index: 24, kind: 'CodeBlock', text: '}', has_error: yes, subtree_size: 2, children: [
  34. // CHECK:STDOUT: {node_index: 23, kind: 'CodeBlockStart', text: '}', has_error: yes}]}]}]},
  35. // CHECK:STDOUT: {node_index: 27, kind: 'FileEnd', text: ''},
  36. // CHECK:STDOUT: ]
  37. fn F() {
  38. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:6: Expected `(` after `if`.
  39. if a {}
  40. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:7: Expected expression.
  41. if () {}
  42. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:9: Unexpected tokens before `)`.
  43. if (b c) {}
  44. if (d)
  45. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+2]]:1: Expected braced code block.
  46. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:1: Expected expression.
  47. }