// 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 A() { // CHECK:STDERR: fail_dereference_function.carbon:[[@LINE+3]]:4: ERROR: Expression cannot be used as a value. // CHECK:STDERR: *A; // CHECK:STDERR: ^ *A; } // CHECK:STDOUT: file "fail_dereference_function.carbon" { // CHECK:STDOUT: %A: = fn_decl @A // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: fn @A() { // CHECK:STDOUT: !entry: // CHECK:STDOUT: %A.ref: = name_reference A, file.%A // CHECK:STDOUT: %.loc11: ref = dereference // CHECK:STDOUT: return // CHECK:STDOUT: }