| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lex/testdata/fail_bad_comment_introducers.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lex/testdata/fail_bad_comment_introducers.carbon
- //
- // Comments have to have whitespace after `//` currently.
- // CHECK:STDERR: fail_bad_comment_introducers.carbon:[[@LINE+4]]:3: error: whitespace is required after '//' [NoWhitespaceAfterCommentIntroducer]
- // CHECK:STDERR: //abc
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- //abc
- // CHECK:STDERR: fail_bad_comment_introducers.carbon:[[@LINE+4]]:7: error: whitespace is required after '//' [NoWhitespaceAfterCommentIntroducer]
- // CHECK:STDERR: //indented
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- //indented
- // We only want to diagnose these on the first line of a block of similarly
- // indented comments.
- // CHECK:STDERR: fail_bad_comment_introducers.carbon:[[@LINE+4]]:3: error: whitespace is required after '//' [NoWhitespaceAfterCommentIntroducer]
- // CHECK:STDERR: //abc
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- //abc
- //123
- //dce
- // CHECK:STDERR: fail_bad_comment_introducers.carbon:[[@LINE+4]]:11: error: whitespace is required after '//' [NoWhitespaceAfterCommentIntroducer]
- // CHECK:STDERR: //indented block
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- //indented block
- //indented block
- //indented block
- //indented block
- // As we have specialized code to scan short indented comment blocks, make sure
- // the behavior is preserved even for (absurdly) large indents.
- // CHECK:STDERR: fail_bad_comment_introducers.carbon:[[@LINE+4]]:83: error: whitespace is required after '//' [NoWhitespaceAfterCommentIntroducer]
- // CHECK:STDERR: //very indented block
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- //very indented block
- //very indented block
- //very indented block
- //very indented block
- // An extra un-indented comment line to anchor the end of the file checks.
- // CHECK:STDOUT: - filename: fail_bad_comment_introducers.carbon
- // CHECK:STDOUT: tokens:
|