Files
carbon-lang/toolchain/check/testdata/pointer/fail_deref_not_pointer.carbon
T
Jon Ross-Perkins b8ceb8dd8b Print a blank line after a diagnostic. (#3806)
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.
2024-03-22 18:10:49 +00:00

83 lines
3.6 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
fn Deref(n: i32) {
// CHECK:STDERR: fail_deref_not_pointer.carbon:[[@LINE+4]]:3: ERROR: Cannot dereference operand of non-pointer type `i32`.
// CHECK:STDERR: *n;
// CHECK:STDERR: ^
// CHECK:STDERR:
*n;
// CHECK:STDERR: fail_deref_not_pointer.carbon:[[@LINE+4]]:4: ERROR: Cannot apply `->` operator to non-pointer type `i32`.
// CHECK:STDERR: n->foo;
// CHECK:STDERR: ^~
// CHECK:STDERR:
n->foo;
// CHECK:STDERR: fail_deref_not_pointer.carbon:[[@LINE+4]]:3: ERROR: Cannot dereference operand of non-pointer type `()`.
// CHECK:STDERR: *();
// CHECK:STDERR: ^
// CHECK:STDERR:
*();
// CHECK:STDERR: fail_deref_not_pointer.carbon:[[@LINE+4]]:5: ERROR: Cannot apply `->` operator to non-pointer type `()`.
// CHECK:STDERR: ()->foo;
// CHECK:STDERR: ^~
// CHECK:STDERR:
()->foo;
// CHECK:STDERR: fail_deref_not_pointer.carbon:[[@LINE+4]]:3: ERROR: Cannot dereference operand of non-pointer type `{}`.
// CHECK:STDERR: *{};
// CHECK:STDERR: ^
// CHECK:STDERR:
*{};
// CHECK:STDERR: fail_deref_not_pointer.carbon:[[@LINE+3]]:5: ERROR: Cannot apply `->` operator to non-pointer type `{}`.
// CHECK:STDERR: {}->foo;
// CHECK:STDERR: ^~
{}->foo;
}
// CHECK:STDOUT: --- fail_deref_not_pointer.carbon
// CHECK:STDOUT:
// CHECK:STDOUT: constants {
// CHECK:STDOUT: %.1: type = tuple_type () [template]
// CHECK:STDOUT: %.2: () = tuple_value () [template]
// CHECK:STDOUT: %.3: type = struct_type {} [template]
// CHECK:STDOUT: %.4: {} = struct_value () [template]
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: file {
// CHECK:STDOUT: package: <namespace> = namespace [template] {
// CHECK:STDOUT: .Deref = %Deref
// CHECK:STDOUT: }
// CHECK:STDOUT: %Deref: <function> = fn_decl @Deref [template] {
// CHECK:STDOUT: %n.loc7_10.1: i32 = param n
// CHECK:STDOUT: @Deref.%n: i32 = bind_name n, %n.loc7_10.1
// CHECK:STDOUT: }
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: fn @Deref(%n: i32) {
// CHECK:STDOUT: !entry:
// CHECK:STDOUT: %n.ref.loc12: i32 = name_ref n, %n
// CHECK:STDOUT: %.loc12: ref <error> = deref %n.ref.loc12
// CHECK:STDOUT: %n.ref.loc17: i32 = name_ref n, %n
// CHECK:STDOUT: %.loc17: ref <error> = deref %n.ref.loc17
// CHECK:STDOUT: %.loc22_5.1: () = tuple_literal ()
// CHECK:STDOUT: %.loc22_5.2: () = tuple_value () [template = constants.%.2]
// CHECK:STDOUT: %.loc22_5.3: () = converted %.loc22_5.1, %.loc22_5.2 [template = constants.%.2]
// CHECK:STDOUT: %.loc22_3: ref <error> = deref %.loc22_5.3
// CHECK:STDOUT: %.loc27_4.1: () = tuple_literal ()
// CHECK:STDOUT: %.loc27_4.2: () = tuple_value () [template = constants.%.2]
// CHECK:STDOUT: %.loc27_4.3: () = converted %.loc27_4.1, %.loc27_4.2 [template = constants.%.2]
// CHECK:STDOUT: %.loc27_5: ref <error> = deref %.loc27_4.3
// CHECK:STDOUT: %.loc32_5.1: {} = struct_literal ()
// CHECK:STDOUT: %.loc32_5.2: {} = struct_value () [template = constants.%.4]
// CHECK:STDOUT: %.loc32_5.3: {} = converted %.loc32_5.1, %.loc32_5.2 [template = constants.%.4]
// CHECK:STDOUT: %.loc32_3: ref <error> = deref %.loc32_5.3
// CHECK:STDOUT: %.loc36_4.1: {} = struct_literal ()
// CHECK:STDOUT: %.loc36_4.2: {} = struct_value () [template = constants.%.4]
// CHECK:STDOUT: %.loc36_4.3: {} = converted %.loc36_4.1, %.loc36_4.2 [template = constants.%.4]
// CHECK:STDOUT: %.loc36_5: ref <error> = deref %.loc36_4.3
// CHECK:STDOUT: return
// CHECK:STDOUT: }
// CHECK:STDOUT: