fail_errors.carbon 2.7 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: {kind: 'FunctionIntroducer', text: 'fn'},
  9. // CHECK:STDOUT: {kind: 'DeclaredName', text: 'F'},
  10. // CHECK:STDOUT: {kind: 'ParameterListEnd', text: ')'},
  11. // CHECK:STDOUT: {kind: 'ParameterList', text: '(', subtree_size: 2},
  12. // CHECK:STDOUT: {kind: 'FunctionDefinitionStart', text: '{', subtree_size: 5},
  13. // CHECK:STDOUT: {kind: 'NameReference', text: 'a'},
  14. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
  15. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 2},
  16. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', has_error: yes, subtree_size: 4},
  17. // CHECK:STDOUT: {kind: 'ConditionEnd', text: ')'},
  18. // CHECK:STDOUT: {kind: 'Condition', text: '(', has_error: yes, subtree_size: 2},
  19. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
  20. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 2},
  21. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 5},
  22. // CHECK:STDOUT: {kind: 'NameReference', text: 'b'},
  23. // CHECK:STDOUT: {kind: 'ConditionEnd', text: ')'},
  24. // CHECK:STDOUT: {kind: 'Condition', text: '(', has_error: yes, subtree_size: 3},
  25. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
  26. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 2},
  27. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 6},
  28. // CHECK:STDOUT: {kind: 'NameReference', text: 'd'},
  29. // CHECK:STDOUT: {kind: 'ConditionEnd', text: ')'},
  30. // CHECK:STDOUT: {kind: 'Condition', text: '(', subtree_size: 3},
  31. // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '}', has_error: yes},
  32. // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', has_error: yes, subtree_size: 2},
  33. // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 6},
  34. // CHECK:STDOUT: {kind: 'FunctionDefinition', text: '}', subtree_size: 27},
  35. // CHECK:STDOUT: {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. }