fail_tuple_out_of_bound_access.carbon 1.6 KB

12345678910111213141516171819202122232425262728293031
  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. var a: (i32, i32) = (12, 6);
  7. // CHECK:STDERR: fail_tuple_out_of_bound_access.carbon:[[@LINE+3]]:17: ERROR: Index `2` is past the end of `(i32, i32) as type`.
  8. // CHECK:STDERR: var b: i32 = a[2];
  9. // CHECK:STDERR: ^
  10. var b: i32 = a[2];
  11. // CHECK:STDOUT: file "fail_tuple_out_of_bound_access.carbon" {
  12. // CHECK:STDOUT: %.loc7_17.1: type = tuple_type (type, type)
  13. // CHECK:STDOUT: %.loc7_17.2: (type, type) = tuple_literal (i32, i32)
  14. // CHECK:STDOUT: %.loc7_17.3: type = tuple_type (i32, i32)
  15. // CHECK:STDOUT: %a: ref (i32, i32) = var "a"
  16. // CHECK:STDOUT: %.loc7_22: i32 = int_literal 12
  17. // CHECK:STDOUT: %.loc7_26: i32 = int_literal 6
  18. // CHECK:STDOUT: %.loc7_27.1: (i32, i32) = tuple_literal (%.loc7_22, %.loc7_26)
  19. // CHECK:STDOUT: %.loc7_27.2: ref i32 = tuple_access %a, member0
  20. // CHECK:STDOUT: %.loc7_27.3: init i32 = initialize_from %.loc7_22 to %.loc7_27.2
  21. // CHECK:STDOUT: %.loc7_27.4: ref i32 = tuple_access %a, member1
  22. // CHECK:STDOUT: %.loc7_27.5: init i32 = initialize_from %.loc7_26 to %.loc7_27.4
  23. // CHECK:STDOUT: %.loc7_27.6: init (i32, i32) = tuple_init %.loc7_27.1, (%.loc7_27.3, %.loc7_27.5)
  24. // CHECK:STDOUT: assign %a, %.loc7_27.6
  25. // CHECK:STDOUT: %b: ref i32 = var "b"
  26. // CHECK:STDOUT: %.loc11_16: i32 = int_literal 2
  27. // CHECK:STDOUT: %.loc11_17: ref <error> = tuple_index %a, <error>
  28. // CHECK:STDOUT: assign %b, <error>
  29. // CHECK:STDOUT: }