mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
The purpose of the newline is to make it clearer where a given diagnostic begins and ends, particularly as the first message of a diagnostic may not be the error. This is a trivial code change, but ripples edits through test files.
20 lines
709 B
Plaintext
20 lines
709 B
Plaintext
// 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: compile --phase=lex --stream-errors %s
|
|
//
|
|
// AUTOUPDATE
|
|
|
|
fn run(String program) {
|
|
return True;
|
|
|
|
// CHECK:STDERR: fail_errors_streamed.carbon:[[@LINE+7]]:10: ERROR: Invalid digit 'a' in decimal numeric literal.
|
|
// CHECK:STDERR: var x = 3a;
|
|
// CHECK:STDERR: ^
|
|
// CHECK:STDERR:
|
|
// CHECK:STDERR: fail_errors_streamed.carbon:[[@LINE-7]]:24: ERROR: Opening symbol without a corresponding closing symbol.
|
|
// CHECK:STDERR: fn run(String program) {
|
|
// CHECK:STDERR: ^
|
|
var x = 3a;
|