// 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 var x: {.a: i32, .b: (i32,)} = {.a = 1, .b = (2,)}; var y: {.a: i32, .b: (i32,)} = x; // CHECK:STDOUT: file "tuple_as_element.carbon" { // CHECK:STDOUT: %.loc7_27.1: type = tuple_type (type) // CHECK:STDOUT: %.loc7_27.2: (type,) = tuple_literal (i32) // CHECK:STDOUT: %.loc7_27.3: type = tuple_type (i32) // CHECK:STDOUT: %.loc7_28.1: type = struct_type {.a: i32, .b: (i32,)} // CHECK:STDOUT: %.loc7_28.2: type = ptr_type {.a: i32, .b: (i32,)} // CHECK:STDOUT: %x: ref {.a: i32, .b: (i32,)} = var "x" // CHECK:STDOUT: %.loc7_38: i32 = int_literal 1 // CHECK:STDOUT: %.loc7_47: i32 = int_literal 2 // CHECK:STDOUT: %.loc7_49.1: (i32,) = tuple_literal (%.loc7_47) // CHECK:STDOUT: %.loc7_50.1: {.a: i32, .b: (i32,)} = struct_literal (%.loc7_38, %.loc7_49.1) // CHECK:STDOUT: %.loc7_50.2: ref i32 = struct_access %x, member0 // CHECK:STDOUT: %.loc7_50.3: init i32 = initialize_from %.loc7_38 to %.loc7_50.2 // CHECK:STDOUT: %.loc7_49.2: init (i32,) = tuple_init %.loc7_49.1, (%.loc7_47) // CHECK:STDOUT: %.loc7_50.4: ref (i32,) = struct_access %x, member1 // CHECK:STDOUT: %.loc7_50.5: init (i32,) = initialize_from %.loc7_49.2 to %.loc7_50.4 // CHECK:STDOUT: %.loc7_50.6: init {.a: i32, .b: (i32,)} = struct_init %.loc7_50.1, (%.loc7_50.3, %.loc7_50.5) // CHECK:STDOUT: assign %x, %.loc7_50.6 // CHECK:STDOUT: %.loc8_27: (type,) = tuple_literal (i32) // CHECK:STDOUT: %.loc8_28: type = struct_type {.a: i32, .b: (i32,)} // CHECK:STDOUT: %y: ref {.a: i32, .b: (i32,)} = var "y" // CHECK:STDOUT: %x.ref: ref {.a: i32, .b: (i32,)} = name_reference "x", %x // CHECK:STDOUT: %.loc8_32.1: ref i32 = struct_access %x.ref, member0 // CHECK:STDOUT: %.loc8_32.2: i32 = bind_value %.loc8_32.1 // CHECK:STDOUT: %.loc8_32.3: ref i32 = struct_access %y, member0 // CHECK:STDOUT: %.loc8_32.4: init i32 = initialize_from %.loc8_32.2 to %.loc8_32.3 // CHECK:STDOUT: %.loc8_32.5: ref (i32,) = struct_access %x.ref, member1 // CHECK:STDOUT: %.loc8_32.6: ref i32 = tuple_access %.loc8_32.5, member0 // CHECK:STDOUT: %.loc8_32.7: i32 = bind_value %.loc8_32.6 // CHECK:STDOUT: %.loc8_32.8: init (i32,) = tuple_init %.loc8_32.5, (%.loc8_32.7) // CHECK:STDOUT: %.loc8_32.9: ref (i32,) = struct_access %y, member1 // CHECK:STDOUT: %.loc8_32.10: init (i32,) = initialize_from %.loc8_32.8 to %.loc8_32.9 // CHECK:STDOUT: %.loc8_32.11: init {.a: i32, .b: (i32,)} = struct_init %x.ref, (%.loc8_32.4, %.loc8_32.10) // CHECK:STDOUT: assign %y, %.loc8_32.11 // CHECK:STDOUT: }