fail_assign_nested.carbon 2.0 KB

123456789101112131415161718192021222324252627282930313233
  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_nested.carbon:[[@LINE+3]]:44: ERROR: Cannot initialize tuple of 2 element(s) from tuple with 3 element(s).
  7. // CHECK:STDERR: var x: ((i32, i32), (i32, i32)) = ((1, 2, 3), (4, 5, 6));
  8. // CHECK:STDERR: ^
  9. var x: ((i32, i32), (i32, i32)) = ((1, 2, 3), (4, 5, 6));
  10. // CHECK:STDOUT: file "fail_assign_nested.carbon" {
  11. // CHECK:STDOUT: %.loc10_18.1: type = tuple_type (type, type)
  12. // CHECK:STDOUT: %.loc10_18.2: (type, type) = tuple_literal (i32, i32)
  13. // CHECK:STDOUT: %.loc10_30: (type, type) = tuple_literal (i32, i32)
  14. // CHECK:STDOUT: %.loc10_31.1: type = tuple_type ((type, type), (type, type))
  15. // CHECK:STDOUT: %.loc10_31.2: ((type, type), (type, type)) = tuple_literal (%.loc10_18.2, %.loc10_30)
  16. // CHECK:STDOUT: %.loc10_31.3: type = tuple_type (i32, i32)
  17. // CHECK:STDOUT: %.loc10_31.4: type = tuple_type ((i32, i32), (i32, i32))
  18. // CHECK:STDOUT: %x: ref ((i32, i32), (i32, i32)) = var "x"
  19. // CHECK:STDOUT: %.loc10_37: i32 = int_literal 1
  20. // CHECK:STDOUT: %.loc10_40: i32 = int_literal 2
  21. // CHECK:STDOUT: %.loc10_43: i32 = int_literal 3
  22. // CHECK:STDOUT: %.loc10_44.1: type = tuple_type (i32, i32, i32)
  23. // CHECK:STDOUT: %.loc10_44.2: (i32, i32, i32) = tuple_literal (%.loc10_37, %.loc10_40, %.loc10_43)
  24. // CHECK:STDOUT: %.loc10_48: i32 = int_literal 4
  25. // CHECK:STDOUT: %.loc10_51: i32 = int_literal 5
  26. // CHECK:STDOUT: %.loc10_54: i32 = int_literal 6
  27. // CHECK:STDOUT: %.loc10_55: (i32, i32, i32) = tuple_literal (%.loc10_48, %.loc10_51, %.loc10_54)
  28. // CHECK:STDOUT: %.loc10_56.1: type = tuple_type ((i32, i32, i32), (i32, i32, i32))
  29. // CHECK:STDOUT: %.loc10_56.2: ((i32, i32, i32), (i32, i32, i32)) = tuple_literal (%.loc10_44.2, %.loc10_55)
  30. // CHECK:STDOUT: assign %x, <error>
  31. // CHECK:STDOUT: }