| 12345678910111213141516171819 |
- // 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+3]]:15: ERROR: Name `undeclared` not found.
- // CHECK:STDERR: let n: i32 = *undeclared;
- // CHECK:STDERR: ^~~~~~~~~~
- let n: i32 = *undeclared;
- // CHECK:STDOUT: --- fail_deref_error.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: %undeclared.ref: <error> = name_ref undeclared, <error>
- // CHECK:STDOUT: %.loc10: ref <error> = deref <error>
- // CHECK:STDOUT: %n: i32 = bind_name n, <error>
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|