fail_assign_empty.carbon 758 B

123456789101112131415161718
  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]]:22: Cannot implicitly convert from `{} as type` to `{.a: i32}`.
  7. // CHECK:STDERR: var x: {.a: i32} = {};
  8. // CHECK:STDERR: ^
  9. var x: {.a: i32} = {};
  10. // CHECK:STDOUT: file "fail_assign_empty.carbon" {
  11. // CHECK:STDOUT: %.loc10_16: type = struct_type {.a: i32}
  12. // CHECK:STDOUT: %x: ref {.a: i32} = var "x"
  13. // CHECK:STDOUT: %.loc10_21.1: type = struct_type {}
  14. // CHECK:STDOUT: %.loc10_21.2: {} = struct_literal ()
  15. // CHECK:STDOUT: assign %x, <error>
  16. // CHECK:STDOUT: }