fail_assign_to_empty.carbon 878 B

1234567891011121314151617181920
  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]]:21: Cannot implicitly convert from `{.a: i32}` to `{} as type`.
  7. // CHECK:STDERR: var x: {} = {.a = 1};
  8. // CHECK:STDERR: ^
  9. var x: {} = {.a = 1};
  10. // CHECK:STDOUT: file "fail_assign_to_empty.carbon" {
  11. // CHECK:STDOUT: %.loc10_9.1: type = struct_type {}
  12. // CHECK:STDOUT: %.loc10_9.2: {} = struct_literal ()
  13. // CHECK:STDOUT: %x: ref {} = var "x"
  14. // CHECK:STDOUT: %.loc10_19: i32 = int_literal 1
  15. // CHECK:STDOUT: %.loc10_20.1: type = struct_type {.a: i32}
  16. // CHECK:STDOUT: %.loc10_20.2: {.a: i32} = struct_literal (%.loc10_19)
  17. // CHECK:STDOUT: assign %x, <error>
  18. // CHECK:STDOUT: }