fail_block_string_second_line.carbon 1.9 KB

123456789101112131415161718192021222324252627
  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. var s: str = '''
  5. error here: '''
  6. // Put all autoupdates below because otherwise is puts a CHECK in the middle of
  7. // the block string.
  8. //
  9. // AUTOUPDATE
  10. // TIP: To test this file alone, run:
  11. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lex/testdata/fail_block_string_second_line.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lex/testdata/fail_block_string_second_line.carbon
  14. // CHECK:STDERR: fail_block_string_second_line.carbon:[[@LINE-10]]:3: error: only whitespace is permitted before the closing `'''` of a multi-line string [ContentBeforeStringTerminator]
  15. // CHECK:STDERR: error here: '''
  16. // CHECK:STDERR: ^
  17. // CHECK:STDERR:
  18. // CHECK:STDOUT: - filename: fail_block_string_second_line.carbon
  19. // CHECK:STDOUT: tokens:
  20. // CHECK:STDOUT: - { index: 1, kind: "Var", line: {{ *}}[[@LINE-17]], column: 1, indent: 1, spelling: "var", has_leading_space: true }
  21. // CHECK:STDOUT: - { index: 2, kind: "Identifier", line: {{ *}}[[@LINE-18]], column: 5, indent: 1, spelling: "s", identifier: 0, has_leading_space: true }
  22. // CHECK:STDOUT: - { index: 3, kind: "Colon", line: {{ *}}[[@LINE-19]], column: 6, indent: 1, spelling: ":" }
  23. // CHECK:STDOUT: - { index: 4, kind: "Str", line: {{ *}}[[@LINE-20]], column: 8, indent: 1, spelling: "str", has_leading_space: true }
  24. // CHECK:STDOUT: - { index: 5, kind: "Equal", line: {{ *}}[[@LINE-21]], column: 12, indent: 1, spelling: "=", has_leading_space: true }
  25. // CHECK:STDOUT: - { index: 6, kind: "StringLiteral", line: {{ *}}[[@LINE-22]], column: 14, indent: 1, spelling: "'''\n error here: '''", value: "error here: ", has_leading_space: true }