fail_errors.carbon 3.0 KB

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