| 12345678910111213141516171819202122232425262728293031323334353637 |
- // 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
- fn Test() {
- // CHECK:STDERR: fail_address_of_error.carbon:[[@LINE+3]]:4: ERROR: Name `undeclared` not found.
- // CHECK:STDERR: &undeclared;
- // CHECK:STDERR: ^~~~~~~~~~
- &undeclared;
- // CHECK:STDERR: fail_address_of_error.carbon:[[@LINE+6]]:3: ERROR: Cannot take the address of non-reference expression.
- // CHECK:STDERR: &(&undeclared);
- // CHECK:STDERR: ^
- // CHECK:STDERR: fail_address_of_error.carbon:[[@LINE+3]]:6: ERROR: Name `undeclared` not found.
- // CHECK:STDERR: &(&undeclared);
- // CHECK:STDERR: ^~~~~~~~~~
- &(&undeclared);
- }
- // CHECK:STDOUT: --- fail_address_of_error.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace {.Test = %Test} [template]
- // CHECK:STDOUT: %Test: <function> = fn_decl @Test [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Test() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %undeclared.ref.loc11: <error> = name_ref undeclared, <error> [template = <error>]
- // CHECK:STDOUT: %.loc11: <error> = addr_of %undeclared.ref.loc11 [template = <error>]
- // CHECK:STDOUT: %undeclared.ref.loc18: <error> = name_ref undeclared, <error> [template = <error>]
- // CHECK:STDOUT: %.loc18_5: <error> = addr_of %undeclared.ref.loc18 [template = <error>]
- // CHECK:STDOUT: %.loc18_3: <error> = addr_of <error> [template = <error>]
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|