fail_star_minus.carbon 2.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/parse/testdata/operators/fail_star_minus.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/parse/testdata/operators/fail_star_minus.carbon
  10. // TODO: There are two possible fixes that would make this expression legal:
  11. // `n * -n` and `n* - n`. The parser doesn't realize that the first fix is
  12. // available because it has already accepted that first part of the expression,
  13. // so it is recovering by using the second option, but the diagnostic should
  14. // ideally offer (or consider) both fixes as alternatives.
  15. // CHECK:STDERR: fail_star_minus.carbon:[[@LINE+3]]:16: ERROR: Whitespace missing after binary operator.
  16. // CHECK:STDERR: var n: i8 = n* -n;
  17. // CHECK:STDERR: ^
  18. var n: i8 = n* -n;
  19. // CHECK:STDOUT: - filename: fail_star_minus.carbon
  20. // CHECK:STDOUT: parse_tree: [
  21. // CHECK:STDOUT: {kind: 'FileStart', text: ''},
  22. // CHECK:STDOUT: {kind: 'VariableIntroducer', text: 'var'},
  23. // CHECK:STDOUT: {kind: 'IdentifierName', text: 'n'},
  24. // CHECK:STDOUT: {kind: 'IntTypeLiteral', text: 'i8'},
  25. // CHECK:STDOUT: {kind: 'BindingPattern', text: ':', subtree_size: 3},
  26. // CHECK:STDOUT: {kind: 'VariableInitializer', text: '='},
  27. // CHECK:STDOUT: {kind: 'IdentifierNameExpr', text: 'n'},
  28. // CHECK:STDOUT: {kind: 'PostfixOperatorStar', text: '*', subtree_size: 2},
  29. // CHECK:STDOUT: {kind: 'IdentifierNameExpr', text: 'n'},
  30. // CHECK:STDOUT: {kind: 'InfixOperatorMinus', text: '-', subtree_size: 4},
  31. // CHECK:STDOUT: {kind: 'VariableDecl', text: ';', subtree_size: 10},
  32. // CHECK:STDOUT: {kind: 'FileEnd', text: ''},
  33. // CHECK:STDOUT: ]