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.
29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
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
|
|
//
|
|
// AUTOUPDATE
|
|
|
|
// CHECK:STDERR: fail_deref_error.carbon:[[@LINE+4]]:15: ERROR: Name `undeclared` not found.
|
|
// CHECK:STDERR: let n: i32 = *undeclared;
|
|
// CHECK:STDERR: ^~~~~~~~~~
|
|
// CHECK:STDERR:
|
|
let n: i32 = *undeclared;
|
|
// CHECK:STDERR: fail_deref_error.carbon:[[@LINE+3]]:15: ERROR: Name `undeclared` not found.
|
|
// CHECK:STDERR: let n2: i32 = undeclared->foo;
|
|
// CHECK:STDERR: ^~~~~~~~~~
|
|
let n2: i32 = undeclared->foo;
|
|
|
|
// CHECK:STDOUT: --- fail_deref_error.carbon
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: file {
|
|
// CHECK:STDOUT: package: <namespace> = namespace [template] {}
|
|
// CHECK:STDOUT: %undeclared.ref.loc11: <error> = name_ref undeclared, <error> [template = <error>]
|
|
// CHECK:STDOUT: %.loc11: ref <error> = deref <error>
|
|
// CHECK:STDOUT: %n: i32 = bind_name n, <error>
|
|
// CHECK:STDOUT: %undeclared.ref.loc15: <error> = name_ref undeclared, <error> [template = <error>]
|
|
// CHECK:STDOUT: %.loc15: ref <error> = deref <error>
|
|
// CHECK:STDOUT: %n2: i32 = bind_name n2, <error>
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|