one_entry.carbon 847 B

123456789101112131415161718192021
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. var x: {.a: i32} = {.a = 4};
  7. var y: {.a: i32} = x;
  8. // CHECK:STDOUT: file "one_entry.carbon" {
  9. // CHECK:STDOUT: %.loc7_16: type = struct_type {.a: i32}
  10. // CHECK:STDOUT: %x: ref {.a: i32} = var "x"
  11. // CHECK:STDOUT: %.loc7_26: i32 = int_literal 4
  12. // CHECK:STDOUT: %.loc7_24: i32 = stub_reference %.loc7_26
  13. // CHECK:STDOUT: %.loc7_27: {.a: i32} = struct_literal (%.loc7_24)
  14. // CHECK:STDOUT: assign %x, %.loc7_27
  15. // CHECK:STDOUT: %.loc8: type = struct_type {.a: i32}
  16. // CHECK:STDOUT: %y: ref {.a: i32} = var "y"
  17. // CHECK:STDOUT: %.loc7_5: {.a: i32} = bind_value %x
  18. // CHECK:STDOUT: assign %y, %.loc7_5
  19. // CHECK:STDOUT: }