fail_block_string_second_line.carbon 1.8 KB

12345678910111213141516171819202122232425
  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. // An autoupdate wants to put the CHECK in the middle of the block string.
  6. // NOAUTOUPDATE
  7. // CHECK:STDOUT: - filename: fail_block_string_second_line.carbon
  8. // CHECK:STDOUT: tokens: [
  9. // CHECK:STDERR: fail_block_string_second_line.carbon:[[@LINE+4]]:3: ERROR: Only whitespace is permitted before the closing `'''` of a multi-line string.
  10. // CHECK:STDERR: error here: '''
  11. // CHECK:STDERR: ^
  12. var s: String = '''
  13. error here: '''
  14. // CHECK:STDOUT: { index: 0, kind: 'StartOfFile', line: 1, column: 1, indent: 1, spelling: '', has_trailing_space: true },
  15. // CHECK:STDOUT: { index: 1, kind: 'Var', line: {{ *}}[[@LINE-3]], column: 1, indent: 1, spelling: 'var', has_trailing_space: true },
  16. // CHECK:STDOUT: { index: 2, kind: 'Identifier', line: {{ *}}[[@LINE-4]], column: 5, indent: 1, spelling: 's', identifier: 0 },
  17. // CHECK:STDOUT: { index: 3, kind: 'Colon', line: {{ *}}[[@LINE-5]], column: 6, indent: 1, spelling: ':', has_trailing_space: true },
  18. // CHECK:STDOUT: { index: 4, kind: 'StringTypeLiteral', line: {{ *}}[[@LINE-6]], column: 8, indent: 1, spelling: 'String', has_trailing_space: true },
  19. // CHECK:STDOUT: { index: 5, kind: 'Equal', line: {{ *}}[[@LINE-7]], column: 15, indent: 1, spelling: '=', has_trailing_space: true },
  20. // CHECK:STDOUT: { index: 6, kind: 'StringLiteral', line: {{ *}}[[@LINE-8]], column: 17, indent: 1, spelling: ''''
  21. // CHECK:STDOUT: error here: '''', value: `error here: `, has_trailing_space: true },
  22. // CHECK:STDOUT: { index: 7, kind: 'EndOfFile', line: {{ *}}[[@LINE+1]], column: {{ *\d+}}, indent: 1, spelling: '' },
  23. // CHECK:STDOUT: ]