fail_assign_nested.carbon 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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]]:36: 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: --- fail_assign_nested.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %.1: type = tuple_type (type, type) [template]
  14. // CHECK:STDOUT: %.2: type = tuple_type ((type, type), (type, type)) [template]
  15. // CHECK:STDOUT: %.3: type = tuple_type (i32, i32) [template]
  16. // CHECK:STDOUT: %.4: type = tuple_type ((i32, i32), (i32, i32)) [template]
  17. // CHECK:STDOUT: %.5: type = ptr_type (i32, i32) [template]
  18. // CHECK:STDOUT: %.6: type = tuple_type ((i32, i32)*, (i32, i32)*) [template]
  19. // CHECK:STDOUT: %.7: type = ptr_type ((i32, i32)*, (i32, i32)*) [template]
  20. // CHECK:STDOUT: %.8: i32 = int_literal 1 [template]
  21. // CHECK:STDOUT: %.9: i32 = int_literal 2 [template]
  22. // CHECK:STDOUT: %.10: i32 = int_literal 3 [template]
  23. // CHECK:STDOUT: %.11: type = tuple_type (i32, i32, i32) [template]
  24. // CHECK:STDOUT: %.12: i32 = int_literal 4 [template]
  25. // CHECK:STDOUT: %.13: i32 = int_literal 5 [template]
  26. // CHECK:STDOUT: %.14: i32 = int_literal 6 [template]
  27. // CHECK:STDOUT: %.15: type = tuple_type ((i32, i32, i32), (i32, i32, i32)) [template]
  28. // CHECK:STDOUT: }
  29. // CHECK:STDOUT:
  30. // CHECK:STDOUT: file {
  31. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  32. // CHECK:STDOUT: .x = %x
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT: %.loc10_18.1: (type, type) = tuple_literal (i32, i32)
  35. // CHECK:STDOUT: %.loc10_30.1: (type, type) = tuple_literal (i32, i32)
  36. // CHECK:STDOUT: %.loc10_31.1: ((type, type), (type, type)) = tuple_literal (%.loc10_18.1, %.loc10_30.1)
  37. // CHECK:STDOUT: %.loc10_18.2: type = converted %.loc10_18.1, constants.%.3 [template = constants.%.3]
  38. // CHECK:STDOUT: %.loc10_30.2: type = converted %.loc10_30.1, constants.%.3 [template = constants.%.3]
  39. // CHECK:STDOUT: %.loc10_31.2: type = converted %.loc10_31.1, constants.%.4 [template = constants.%.4]
  40. // CHECK:STDOUT: %x.var: ref ((i32, i32), (i32, i32)) = var x
  41. // CHECK:STDOUT: %x: ref ((i32, i32), (i32, i32)) = bind_name x, %x.var
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: fn @__global_init() {
  45. // CHECK:STDOUT: !entry:
  46. // CHECK:STDOUT: %.loc10_37: i32 = int_literal 1 [template = constants.%.8]
  47. // CHECK:STDOUT: %.loc10_40: i32 = int_literal 2 [template = constants.%.9]
  48. // CHECK:STDOUT: %.loc10_43: i32 = int_literal 3 [template = constants.%.10]
  49. // CHECK:STDOUT: %.loc10_44: (i32, i32, i32) = tuple_literal (%.loc10_37, %.loc10_40, %.loc10_43)
  50. // CHECK:STDOUT: %.loc10_48: i32 = int_literal 4 [template = constants.%.12]
  51. // CHECK:STDOUT: %.loc10_51: i32 = int_literal 5 [template = constants.%.13]
  52. // CHECK:STDOUT: %.loc10_54: i32 = int_literal 6 [template = constants.%.14]
  53. // CHECK:STDOUT: %.loc10_55: (i32, i32, i32) = tuple_literal (%.loc10_48, %.loc10_51, %.loc10_54)
  54. // CHECK:STDOUT: %.loc10_56: ((i32, i32, i32), (i32, i32, i32)) = tuple_literal (%.loc10_44, %.loc10_55)
  55. // CHECK:STDOUT: assign file.%x.var, <error>
  56. // CHECK:STDOUT: return
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT: