fail_assign_empty.carbon 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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_empty.carbon:[[@LINE+3]]:20: ERROR: Cannot initialize struct with 1 field(s) from struct with 0 field(s).
  7. // CHECK:STDERR: var x: {.a: i32} = {};
  8. // CHECK:STDERR: ^~
  9. var x: {.a: i32} = {};
  10. // CHECK:STDOUT: --- fail_assign_empty.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %.1: type = struct_type {.a: i32} [template]
  14. // CHECK:STDOUT: %.2: type = struct_type {} [template]
  15. // CHECK:STDOUT: }
  16. // CHECK:STDOUT:
  17. // CHECK:STDOUT: file {
  18. // CHECK:STDOUT: package: <namespace> = namespace {.x = %x} [template]
  19. // CHECK:STDOUT: %.loc10: type = struct_type {.a: i32} [template = constants.%.1]
  20. // CHECK:STDOUT: %x.var: ref {.a: i32} = var x
  21. // CHECK:STDOUT: %x: ref {.a: i32} = bind_name x, %x.var
  22. // CHECK:STDOUT: }
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: fn @__global_init() {
  25. // CHECK:STDOUT: !entry:
  26. // CHECK:STDOUT: %.loc10: {} = struct_literal ()
  27. // CHECK:STDOUT: assign file.%x.var, <error>
  28. // CHECK:STDOUT: return
  29. // CHECK:STDOUT: }
  30. // CHECK:STDOUT: