fail_errors.carbon 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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: {kind: 'FunctionIntroducer', text: 'fn'},
  9. // CHECK:STDOUT: {kind: 'DeclaredName', text: 'F'},
  10. // CHECK:STDOUT: {kind: 'ParameterListStart', text: '('},
  11. // CHECK:STDOUT: {kind: 'ParameterList', text: ')', subtree_size: 2},
  12. // CHECK:STDOUT: {kind: 'FunctionDefinitionStart', text: '{', subtree_size: 5},
  13. // CHECK:STDOUT: {kind: 'IfConditionStart', text: 'if', has_error: yes},
  14. // CHECK:STDOUT: {kind: 'NameReference', text: 'a'},
  15. // CHECK:STDOUT: {kind: 'IfCondition', text: 'if', has_error: yes, subtree_size: 3},
  16. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
  17. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 2},
  18. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 6},
  19. // CHECK:STDOUT: {kind: 'IfConditionStart', text: '('},
  20. // CHECK:STDOUT: {kind: 'InvalidParse', text: ')', has_error: yes},
  21. // CHECK:STDOUT: {kind: 'IfCondition', text: ')', has_error: yes, subtree_size: 3},
  22. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
  23. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 2},
  24. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 6},
  25. // CHECK:STDOUT: {kind: 'IfConditionStart', text: '('},
  26. // CHECK:STDOUT: {kind: 'NameReference', text: 'b'},
  27. // CHECK:STDOUT: {kind: 'IfCondition', text: ')', has_error: yes, subtree_size: 3},
  28. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
  29. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 2},
  30. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 6},
  31. // CHECK:STDOUT: {kind: 'IfConditionStart', text: '('},
  32. // CHECK:STDOUT: {kind: 'NameReference', text: 'd'},
  33. // CHECK:STDOUT: {kind: 'IfCondition', text: ')', subtree_size: 3},
  34. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '}', has_error: yes},
  35. // CHECK:STDOUT: {kind: 'InvalidParse', text: '}', has_error: yes},
  36. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', has_error: yes, subtree_size: 3},
  37. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 7},
  38. // CHECK:STDOUT: {kind: 'FunctionDefinition', text: '}', subtree_size: 31},
  39. // CHECK:STDOUT: {kind: 'FileEnd', text: ''},
  40. // CHECK:STDOUT: ]
  41. fn F() {
  42. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:6: Expected `(` after `if`.
  43. if a {}
  44. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:7: Expected expression.
  45. if () {}
  46. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:9: Unexpected tokens before `)`.
  47. if (b c) {}
  48. if (d)
  49. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+2]]:1: Expected braced code block.
  50. // CHECK:STDERR: {{.*}}/toolchain/parser/testdata/if/fail_errors.carbon:[[@LINE+1]]:1: Expected expression.
  51. }