| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // 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
- //
- // ARGS: --print-errors=streamed dump tokens %s
- //
- // TODO: Support autoupdate with ARGS.
- // NOAUTOUPDATE
- // TODO: Disable token output, it's not interesting for these tests.
- // CHECK:STDOUT: [
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: {{.*}}
- // CHECK:STDOUT: ]
- fn run(String program) {
- return True;
- var x = 3a;
- // CHECK:STDERR: fail_errors_streamed.carbon:[[@LINE-2]]:10: Invalid digit 'a' in decimal numeric literal.
- // CHECK:STDERR: var x = 3a;
- // CHECK:STDERR: ^
- // CHECK:STDERR: fail_errors_streamed.carbon:[[@LINE-8]]:24: Closing symbol does not match most recent opening symbol.
- // CHECK:STDERR: fn run(String program) {
- // CHECK:STDERR: ^
|