mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 20:20:13 +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).
64 lines
2.1 KiB
Plaintext
64 lines
2.1 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
|
|
|
|
var x: {} = {};
|
|
var y: {} = x;
|
|
|
|
// 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: y,
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT: types: [
|
|
// CHECK:STDOUT: node+0,
|
|
// 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: VarStorage, arg0: str0, type: type0},
|
|
// CHECK:STDOUT: {kind: StructValue, arg0: block0, type: type0},
|
|
// CHECK:STDOUT: {kind: Assign, arg0: node+2, arg1: node+3},
|
|
// CHECK:STDOUT: {kind: StructValue, arg0: block0, type: type0},
|
|
// CHECK:STDOUT: {kind: VarStorage, arg0: str1, type: type0},
|
|
// CHECK:STDOUT: {kind: BindValue, arg0: node+2, type: type0},
|
|
// CHECK:STDOUT: {kind: Assign, arg0: node+6, arg1: node+7},
|
|
// 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+6,
|
|
// CHECK:STDOUT: node+7,
|
|
// CHECK:STDOUT: node+8,
|
|
// CHECK:STDOUT: ],
|
|
// CHECK:STDOUT: ]
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: package {
|
|
// CHECK:STDOUT: %.loc7_9.1: type = struct_type {}
|
|
// CHECK:STDOUT: %.loc7_9.2: {} = struct_value ()
|
|
// CHECK:STDOUT: %x: ref {} = var "x"
|
|
// CHECK:STDOUT: %.loc7_14: {} = struct_value ()
|
|
// CHECK:STDOUT: assign %x, %.loc7_14
|
|
// CHECK:STDOUT: %.loc8: {} = struct_value ()
|
|
// CHECK:STDOUT: %y: ref {} = var "y"
|
|
// CHECK:STDOUT: %.loc7_5: {} = bind_value %x
|
|
// CHECK:STDOUT: assign %y, %.loc7_5
|
|
// CHECK:STDOUT: }
|