// 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+4]]:4: ERROR: Name `undeclared` not found. // CHECK:STDERR: &undeclared; // CHECK:STDERR: ^~~~~~~~~~ // CHECK:STDERR: &undeclared; // CHECK:STDERR: fail_address_of_error.carbon:[[@LINE+7]]:3: ERROR: Cannot take the address of non-reference expression. // CHECK:STDERR: &(&undeclared); // CHECK:STDERR: ^ // 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 [template] { // CHECK:STDOUT: .Test = %Test // CHECK:STDOUT: } // CHECK:STDOUT: %Test: = fn_decl @Test [template] {} // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: fn @Test() { // CHECK:STDOUT: !entry: // CHECK:STDOUT: %undeclared.ref.loc12: = name_ref undeclared, [template = ] // CHECK:STDOUT: %.loc12: = addr_of %undeclared.ref.loc12 [template = ] // CHECK:STDOUT: %undeclared.ref.loc20: = name_ref undeclared, [template = ] // CHECK:STDOUT: %.loc20_5: = addr_of %undeclared.ref.loc20 [template = ] // CHECK:STDOUT: %.loc20_3: = addr_of [template = ] // CHECK:STDOUT: return // CHECK:STDOUT: } // CHECK:STDOUT: