fail_assign_empty.carbon 897 B

12345678910111213141516171819202122
  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]]:21: 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: constants {
  11. // CHECK:STDOUT: %.loc10: type = struct_type {}
  12. // CHECK:STDOUT: }
  13. // CHECK:STDOUT:
  14. // CHECK:STDOUT: file "fail_assign_empty.carbon" {
  15. // CHECK:STDOUT: %.loc10_16: type = struct_type {.a: i32}
  16. // CHECK:STDOUT: %x.var: ref {.a: i32} = var x
  17. // CHECK:STDOUT: %x: ref {.a: i32} = bind_name x, %x.var
  18. // CHECK:STDOUT: %.loc10_21: {} = struct_literal ()
  19. // CHECK:STDOUT: assign %x.var, <error>
  20. // CHECK:STDOUT: }