fail_assign_nested.carbon 5.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/tuple/fail_assign_nested.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/tuple/fail_assign_nested.carbon
  10. // CHECK:STDERR: fail_assign_nested.carbon:[[@LINE+3]]:36: error: cannot initialize tuple of 2 element(s) from tuple with 3 element(s).
  11. // CHECK:STDERR: var x: ((i32, i32), (i32, i32)) = ((1, 2, 3), (4, 5, 6));
  12. // CHECK:STDERR: ^~~~~~~~~
  13. var x: ((i32, i32), (i32, i32)) = ((1, 2, 3), (4, 5, 6));
  14. // CHECK:STDOUT: --- fail_assign_nested.carbon
  15. // CHECK:STDOUT:
  16. // CHECK:STDOUT: constants {
  17. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  18. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  19. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  20. // CHECK:STDOUT: %.2: type = tuple_type (type, type) [template]
  21. // CHECK:STDOUT: %.3: type = tuple_type (%.2, %.2) [template]
  22. // CHECK:STDOUT: %.4: type = tuple_type (i32, i32) [template]
  23. // CHECK:STDOUT: %.5: type = tuple_type (%.4, %.4) [template]
  24. // CHECK:STDOUT: %.6: type = ptr_type %.4 [template]
  25. // CHECK:STDOUT: %.7: type = tuple_type (%.6, %.6) [template]
  26. // CHECK:STDOUT: %.8: type = ptr_type %.7 [template]
  27. // CHECK:STDOUT: %.9: i32 = int_literal 1 [template]
  28. // CHECK:STDOUT: %.10: i32 = int_literal 2 [template]
  29. // CHECK:STDOUT: %.11: i32 = int_literal 3 [template]
  30. // CHECK:STDOUT: %.12: type = tuple_type (i32, i32, i32) [template]
  31. // CHECK:STDOUT: %.13: i32 = int_literal 4 [template]
  32. // CHECK:STDOUT: %.14: i32 = int_literal 5 [template]
  33. // CHECK:STDOUT: %.15: i32 = int_literal 6 [template]
  34. // CHECK:STDOUT: %.16: type = tuple_type (%.12, %.12) [template]
  35. // CHECK:STDOUT: }
  36. // CHECK:STDOUT:
  37. // CHECK:STDOUT: imports {
  38. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  39. // CHECK:STDOUT: .Int32 = %import_ref
  40. // CHECK:STDOUT: import Core//prelude
  41. // CHECK:STDOUT: import Core//prelude/operators
  42. // CHECK:STDOUT: import Core//prelude/types
  43. // CHECK:STDOUT: import Core//prelude/operators/arithmetic
  44. // CHECK:STDOUT: import Core//prelude/operators/as
  45. // CHECK:STDOUT: import Core//prelude/operators/bitwise
  46. // CHECK:STDOUT: import Core//prelude/operators/comparison
  47. // CHECK:STDOUT: import Core//prelude/types/bool
  48. // CHECK:STDOUT: }
  49. // CHECK:STDOUT: %import_ref: %Int32.type = import_ref Core//prelude/types, inst+9, loaded [template = constants.%Int32]
  50. // CHECK:STDOUT: }
  51. // CHECK:STDOUT:
  52. // CHECK:STDOUT: file {
  53. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  54. // CHECK:STDOUT: .Core = imports.%Core
  55. // CHECK:STDOUT: .x = %x
  56. // CHECK:STDOUT: }
  57. // CHECK:STDOUT: %Core.import = import Core
  58. // CHECK:STDOUT: %int.make_type_32.loc14_10: init type = call constants.%Int32() [template = i32]
  59. // CHECK:STDOUT: %int.make_type_32.loc14_15: init type = call constants.%Int32() [template = i32]
  60. // CHECK:STDOUT: %.loc14_18: %.2 = tuple_literal (%int.make_type_32.loc14_10, %int.make_type_32.loc14_15)
  61. // CHECK:STDOUT: %int.make_type_32.loc14_22: init type = call constants.%Int32() [template = i32]
  62. // CHECK:STDOUT: %int.make_type_32.loc14_27: init type = call constants.%Int32() [template = i32]
  63. // CHECK:STDOUT: %.loc14_30: %.2 = tuple_literal (%int.make_type_32.loc14_22, %int.make_type_32.loc14_27)
  64. // CHECK:STDOUT: %.loc14_31.1: %.3 = tuple_literal (%.loc14_18, %.loc14_30)
  65. // CHECK:STDOUT: %.loc14_31.2: type = value_of_initializer %int.make_type_32.loc14_10 [template = i32]
  66. // CHECK:STDOUT: %.loc14_31.3: type = converted %int.make_type_32.loc14_10, %.loc14_31.2 [template = i32]
  67. // CHECK:STDOUT: %.loc14_31.4: type = value_of_initializer %int.make_type_32.loc14_15 [template = i32]
  68. // CHECK:STDOUT: %.loc14_31.5: type = converted %int.make_type_32.loc14_15, %.loc14_31.4 [template = i32]
  69. // CHECK:STDOUT: %.loc14_31.6: type = converted %.loc14_18, constants.%.4 [template = constants.%.4]
  70. // CHECK:STDOUT: %.loc14_31.7: type = value_of_initializer %int.make_type_32.loc14_22 [template = i32]
  71. // CHECK:STDOUT: %.loc14_31.8: type = converted %int.make_type_32.loc14_22, %.loc14_31.7 [template = i32]
  72. // CHECK:STDOUT: %.loc14_31.9: type = value_of_initializer %int.make_type_32.loc14_27 [template = i32]
  73. // CHECK:STDOUT: %.loc14_31.10: type = converted %int.make_type_32.loc14_27, %.loc14_31.9 [template = i32]
  74. // CHECK:STDOUT: %.loc14_31.11: type = converted %.loc14_30, constants.%.4 [template = constants.%.4]
  75. // CHECK:STDOUT: %.loc14_31.12: type = converted %.loc14_31.1, constants.%.5 [template = constants.%.5]
  76. // CHECK:STDOUT: %x.var: ref %.5 = var x
  77. // CHECK:STDOUT: %x: ref %.5 = bind_name x, %x.var
  78. // CHECK:STDOUT: }
  79. // CHECK:STDOUT:
  80. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  81. // CHECK:STDOUT:
  82. // CHECK:STDOUT: fn @__global_init() {
  83. // CHECK:STDOUT: !entry:
  84. // CHECK:STDOUT: %.loc14_37: i32 = int_literal 1 [template = constants.%.9]
  85. // CHECK:STDOUT: %.loc14_40: i32 = int_literal 2 [template = constants.%.10]
  86. // CHECK:STDOUT: %.loc14_43: i32 = int_literal 3 [template = constants.%.11]
  87. // CHECK:STDOUT: %.loc14_44: %.12 = tuple_literal (%.loc14_37, %.loc14_40, %.loc14_43)
  88. // CHECK:STDOUT: %.loc14_48: i32 = int_literal 4 [template = constants.%.13]
  89. // CHECK:STDOUT: %.loc14_51: i32 = int_literal 5 [template = constants.%.14]
  90. // CHECK:STDOUT: %.loc14_54: i32 = int_literal 6 [template = constants.%.15]
  91. // CHECK:STDOUT: %.loc14_55: %.12 = tuple_literal (%.loc14_48, %.loc14_51, %.loc14_54)
  92. // CHECK:STDOUT: %.loc14_56: %.16 = tuple_literal (%.loc14_44, %.loc14_55)
  93. // CHECK:STDOUT: assign file.%x.var, <error>
  94. // CHECK:STDOUT: return
  95. // CHECK:STDOUT: }
  96. // CHECK:STDOUT: