// 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 // TIP: To test this file alone, run: // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/struct/one_entry.carbon // TIP: To dump output, run: // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/struct/one_entry.carbon var x: {.a: i32} = {.a = 4}; var y: {.a: i32} = x; // CHECK:STDOUT: --- one_entry.carbon // CHECK:STDOUT: // CHECK:STDOUT: constants { // CHECK:STDOUT: %.1: Core.IntLiteral = int_value 32 [template] // CHECK:STDOUT: %Int.type: type = fn_type @Int [template] // CHECK:STDOUT: %Int: %Int.type = struct_value () [template] // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template] // CHECK:STDOUT: %.2: type = struct_type {.a: %i32} [template] // CHECK:STDOUT: %.3: Core.IntLiteral = int_value 4 [template] // CHECK:STDOUT: %.4: type = struct_type {.a: Core.IntLiteral} [template] // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template] // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template] // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template] // CHECK:STDOUT: %.24: = interface_witness (%Convert.14) [template] // CHECK:STDOUT: %.25: = bound_method %.3, %Convert.14 [template] // CHECK:STDOUT: %.26: = specific_function %.25, @Convert.2(%.1) [template] // CHECK:STDOUT: %.27: %i32 = int_value 4 [template] // CHECK:STDOUT: %struct: %.2 = struct_value (%.27) [template] // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: imports { // CHECK:STDOUT: %Core: = namespace file.%Core.import, [template] { // CHECK:STDOUT: .Int = %import_ref.1 // CHECK:STDOUT: .ImplicitAs = %import_ref.2 // CHECK:STDOUT: import Core//prelude // CHECK:STDOUT: import Core//prelude/... // CHECK:STDOUT: } // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: file { // CHECK:STDOUT: package: = namespace [template] { // CHECK:STDOUT: .Core = imports.%Core // CHECK:STDOUT: .x = %x // CHECK:STDOUT: .y = %y // CHECK:STDOUT: } // CHECK:STDOUT: %Core.import = import Core // CHECK:STDOUT: %.loc11_13.1: Core.IntLiteral = int_value 32 [template = constants.%.1] // CHECK:STDOUT: %int.make_type_signed.loc11: init type = call constants.%Int(%.loc11_13.1) [template = constants.%i32] // CHECK:STDOUT: %.loc11_13.2: type = value_of_initializer %int.make_type_signed.loc11 [template = constants.%i32] // CHECK:STDOUT: %.loc11_13.3: type = converted %int.make_type_signed.loc11, %.loc11_13.2 [template = constants.%i32] // CHECK:STDOUT: %.loc11_16: type = struct_type {.a: %i32} [template = constants.%.2] // CHECK:STDOUT: %x.var: ref %.2 = var x // CHECK:STDOUT: %x: ref %.2 = bind_name x, %x.var // CHECK:STDOUT: %.loc12_13.1: Core.IntLiteral = int_value 32 [template = constants.%.1] // CHECK:STDOUT: %int.make_type_signed.loc12: init type = call constants.%Int(%.loc12_13.1) [template = constants.%i32] // CHECK:STDOUT: %.loc12_13.2: type = value_of_initializer %int.make_type_signed.loc12 [template = constants.%i32] // CHECK:STDOUT: %.loc12_13.3: type = converted %int.make_type_signed.loc12, %.loc12_13.2 [template = constants.%i32] // CHECK:STDOUT: %.loc12_16: type = struct_type {.a: %i32} [template = constants.%.2] // CHECK:STDOUT: %y.var: ref %.2 = var y // CHECK:STDOUT: %y: ref %.2 = bind_name y, %y.var // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: fn @__global_init() { // CHECK:STDOUT: !entry: // CHECK:STDOUT: %.loc11_26: Core.IntLiteral = int_value 4 [template = constants.%.3] // CHECK:STDOUT: %.loc11_27.1: %.4 = struct_literal (%.loc11_26) // CHECK:STDOUT: %.loc11_27.2: %Convert.type.2 = interface_witness_access constants.%.24, element0 [template = constants.%Convert.14] // CHECK:STDOUT: %.loc11_27.3: = bound_method %.loc11_26, %.loc11_27.2 [template = constants.%.25] // CHECK:STDOUT: %.loc11_27.4: = specific_function %.loc11_27.3, @Convert.2(constants.%.1) [template = constants.%.26] // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc11_27.4(%.loc11_26) [template = constants.%.27] // CHECK:STDOUT: %.loc11_27.5: init %i32 = converted %.loc11_26, %int.convert_checked [template = constants.%.27] // CHECK:STDOUT: %.loc11_27.6: init %.2 = struct_init (%.loc11_27.5) to file.%x.var [template = constants.%struct] // CHECK:STDOUT: %.loc11_28: init %.2 = converted %.loc11_27.1, %.loc11_27.6 [template = constants.%struct] // CHECK:STDOUT: assign file.%x.var, %.loc11_28 // CHECK:STDOUT: %x.ref: ref %.2 = name_ref x, file.%x // CHECK:STDOUT: %.loc12_20.1: ref %i32 = struct_access %x.ref, element0 // CHECK:STDOUT: %.loc12_20.2: %i32 = bind_value %.loc12_20.1 // CHECK:STDOUT: %.loc12_20.3: init %.2 = struct_init (%.loc12_20.2) to file.%y.var // CHECK:STDOUT: %.loc12_21: init %.2 = converted %x.ref, %.loc12_20.3 // CHECK:STDOUT: assign file.%y.var, %.loc12_21 // CHECK:STDOUT: return // CHECK:STDOUT: } // CHECK:STDOUT: