fail_field_name_mismatch.carbon 927 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_field_name_mismatch.carbon:[[@LINE+3]]:28: Cannot implicitly convert from `{.b: i32}` to `{.a: i32}`.
  7. // CHECK:STDERR: var x: {.a: i32} = {.b = 1};
  8. // CHECK:STDERR: ^
  9. var x: {.a: i32} = {.b = 1};
  10. // CHECK:STDOUT: file "fail_field_name_mismatch.carbon" {
  11. // CHECK:STDOUT: %.loc10_16: type = struct_type {.a: i32}
  12. // CHECK:STDOUT: %x: ref {.a: i32} = var "x"
  13. // CHECK:STDOUT: %.loc10_26: i32 = int_literal 1
  14. // CHECK:STDOUT: %.loc10_24: i32 = stub_reference %.loc10_26
  15. // CHECK:STDOUT: %.loc10_27.1: type = struct_type {.b: i32}
  16. // CHECK:STDOUT: %.loc10_27.2: {.b: i32} = struct_literal (%.loc10_24)
  17. // CHECK:STDOUT: assign %x, <error>
  18. // CHECK:STDOUT: }