fail_too_few_values.carbon 918 B

12345678910111213141516171819
  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_too_few_values.carbon:[[@LINE+3]]:36: ERROR: Cannot initialize struct of 2 element(s) from struct with 1 element(s).
  7. // CHECK:STDERR: var x: {.a: i32, .b: i32} = {.a = 1};
  8. // CHECK:STDERR: ^
  9. var x: {.a: i32, .b: i32} = {.a = 1};
  10. // CHECK:STDOUT: file "fail_too_few_values.carbon" {
  11. // CHECK:STDOUT: %.loc10_25: type = struct_type {.a: i32, .b: i32}
  12. // CHECK:STDOUT: %x: ref {.a: i32, .b: i32} = var "x"
  13. // CHECK:STDOUT: %.loc10_35: i32 = int_literal 1
  14. // CHECK:STDOUT: %.loc10_36.1: type = struct_type {.a: i32}
  15. // CHECK:STDOUT: %.loc10_36.2: {.a: i32} = struct_literal (%.loc10_35)
  16. // CHECK:STDOUT: assign %x, <error>
  17. // CHECK:STDOUT: }