fail_assign_to_empty.carbon 1.4 KB

12345678910111213141516171819202122232425262728293031
  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. // CHECK:STDERR: fail_assign_to_empty.carbon:[[@LINE+3]]:13: ERROR: Cannot initialize struct with 0 field(s) from struct with 1 field(s).
  7. // CHECK:STDERR: var x: {} = {.a = 1};
  8. // CHECK:STDERR: ^~~~~~~~
  9. var x: {} = {.a = 1};
  10. // CHECK:STDOUT: --- fail_assign_to_empty.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %.loc10_9.1: type = struct_type {}, const
  14. // CHECK:STDOUT: %.loc10_9.2: type = tuple_type (), const
  15. // CHECK:STDOUT: %.loc10_19: i32 = int_literal 1, const
  16. // CHECK:STDOUT: %.loc10_20: type = struct_type {.a: i32}, const
  17. // CHECK:STDOUT: }
  18. // CHECK:STDOUT:
  19. // CHECK:STDOUT: file {
  20. // CHECK:STDOUT: package: <namespace> = namespace package, {.x = %x}
  21. // CHECK:STDOUT: %.loc10_9.1: {} = struct_literal ()
  22. // CHECK:STDOUT: %.loc10_9.2: type = converted %.loc10_9.1, constants.%.loc10_9.1, const = constants.%.loc10_9.1
  23. // CHECK:STDOUT: %x.var: ref {} = var x
  24. // CHECK:STDOUT: %x: ref {} = bind_name x, %x.var
  25. // CHECK:STDOUT: %.loc10_19: i32 = int_literal 1, const = constants.%.loc10_19
  26. // CHECK:STDOUT: %.loc10_20: {.a: i32} = struct_literal (%.loc10_19)
  27. // CHECK:STDOUT: assign %x.var, <error>
  28. // CHECK:STDOUT: }
  29. // CHECK:STDOUT: