mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 21:30:11 +01:00
Continuing along with #3070. Note this is just a file rename, with BUILD edits; every file previously in semantics/ should show as moved (except maybe BUILDs, which split).
81 lines
2.9 KiB
Plaintext
81 lines
2.9 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
|
|
|
|
// CHECK:STDERR: fail_assign_nested.carbon:[[@LINE+3]]:28: Cannot implicitly convert from `{.b: {}}` to `{.a: {}}`.
|
|
// CHECK:STDERR: var x: {.a: {}} = {.b = {}};
|
|
// CHECK:STDERR: ^
|
|
var x: {.a: {}} = {.b = {}};
|
|
|
|
// CHECK:STDOUT: cross_reference_irs_size: 1
|
|
// CHECK:STDOUT: functions: [
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: integer_literals: [
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: real_literals: [
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: strings: [
|
|
// CHECK:STDOUT: x,
|
|
// CHECK:STDOUT: a,
|
|
// CHECK:STDOUT: b,
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: types: [
|
|
// CHECK:STDOUT: node+0,
|
|
// CHECK:STDOUT: node+3,
|
|
// CHECK:STDOUT: node+8,
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: type_blocks: [
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: nodes: [
|
|
// CHECK:STDOUT: {kind: StructType, arg0: block0, type: typeTypeType},
|
|
// CHECK:STDOUT: {kind: StructValue, arg0: block0, type: type0},
|
|
// CHECK:STDOUT: {kind: StructTypeField, arg0: str1, arg1: type0},
|
|
// CHECK:STDOUT: {kind: StructType, arg0: block2, type: typeTypeType},
|
|
// CHECK:STDOUT: {kind: VarStorage, arg0: str0, type: type1},
|
|
// CHECK:STDOUT: {kind: StructValue, arg0: block0, type: type0},
|
|
// CHECK:STDOUT: {kind: StructTypeField, arg0: str2, arg1: type0},
|
|
// CHECK:STDOUT: {kind: StubReference, arg0: node+5, type: type0},
|
|
// CHECK:STDOUT: {kind: StructType, arg0: block3, type: typeTypeType},
|
|
// CHECK:STDOUT: {kind: StructValue, arg0: block4, type: type2},
|
|
// CHECK:STDOUT: {kind: Assign, arg0: node+4, arg1: nodeError},
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: node_blocks: [
|
|
// CHECK:STDOUT: [
|
|
// CHECK:STDOUT: ],
|
|
// CHECK:STDOUT: [
|
|
// CHECK:STDOUT: node+0,
|
|
// CHECK:STDOUT: node+1,
|
|
// CHECK:STDOUT: node+2,
|
|
// CHECK:STDOUT: node+3,
|
|
// CHECK:STDOUT: node+4,
|
|
// CHECK:STDOUT: node+5,
|
|
// CHECK:STDOUT: node+7,
|
|
// CHECK:STDOUT: node+8,
|
|
// CHECK:STDOUT: node+9,
|
|
// CHECK:STDOUT: node+10,
|
|
// CHECK:STDOUT: ],
|
|
// CHECK:STDOUT: [
|
|
// CHECK:STDOUT: node+2,
|
|
// CHECK:STDOUT: ],
|
|
// CHECK:STDOUT: [
|
|
// CHECK:STDOUT: node+6,
|
|
// CHECK:STDOUT: ],
|
|
// CHECK:STDOUT: [
|
|
// CHECK:STDOUT: node+7,
|
|
// CHECK:STDOUT: ],
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: package {
|
|
// CHECK:STDOUT: %.loc10_14.1: type = struct_type {}
|
|
// CHECK:STDOUT: %.loc10_14.2: {} = struct_value ()
|
|
// CHECK:STDOUT: %.loc10_15: type = struct_type {.a: {}}
|
|
// CHECK:STDOUT: %x: ref {.a: {}} = var "x"
|
|
// CHECK:STDOUT: %.loc10_26: {} = struct_value ()
|
|
// CHECK:STDOUT: %.loc10_23: {} = stub_reference %.loc10_26
|
|
// CHECK:STDOUT: %.loc10_27.1: type = struct_type {.b: {}}
|
|
// CHECK:STDOUT: %.loc10_27.2: {.b: {}} = struct_value (%.loc10_23)
|
|
// CHECK:STDOUT: assign %x, <error>
|
|
// CHECK:STDOUT: }
|