| 1234567891011121314151617181920212223242526272829303132 |
- // 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
- // CHECK:STDERR: fail_assign_nested.carbon:[[@LINE+3]]:19: ERROR: Missing value for field `a` in struct initialization.
- // CHECK:STDERR: var x: {.a: {}} = {.b = {}};
- // CHECK:STDERR: ^~~~~~~~~
- var x: {.a: {}} = {.b = {}};
- // CHECK:STDOUT: --- fail_assign_nested.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %.loc10_14.1: type = struct_type {}, const
- // CHECK:STDOUT: %.loc10_14.2: type = tuple_type (), const
- // CHECK:STDOUT: %.loc10_15: type = struct_type {.a: ()}, const
- // CHECK:STDOUT: %.loc10_27: type = struct_type {.b: {}}, const
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace package, {.x = %x}
- // CHECK:STDOUT: %.loc10_14.1: {} = struct_literal ()
- // CHECK:STDOUT: %.loc10_14.2: type = converted %.loc10_14.1, constants.%.loc10_14.1, const = constants.%.loc10_14.1
- // CHECK:STDOUT: %.loc10_15: type = struct_type {.a: {}}, const
- // CHECK:STDOUT: %x.var: ref {.a: {}} = var x
- // CHECK:STDOUT: %x: ref {.a: {}} = bind_name x, %x.var
- // CHECK:STDOUT: %.loc10_26: {} = struct_literal ()
- // CHECK:STDOUT: %.loc10_27: {.b: {}} = struct_literal (%.loc10_26)
- // CHECK:STDOUT: assign %x.var, <error>
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|