fail_negative_indexing.carbon 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/access/fail_negative_indexing.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/tuple/access/fail_negative_indexing.carbon
  10. var a: (i32, i32) = (12, 6);
  11. // CHECK:STDERR: fail_negative_indexing.carbon:[[@LINE+3]]:17: error: cannot access member of interface `Core.Negate` in type `Core.IntLiteral` that does not implement that interface [MissingImplInMemberAccess]
  12. // CHECK:STDERR: var b: i32 = a.(-10);
  13. // CHECK:STDERR: ^~~
  14. var b: i32 = a.(-10);
  15. // CHECK:STDOUT: --- fail_negative_indexing.carbon
  16. // CHECK:STDOUT:
  17. // CHECK:STDOUT: constants {
  18. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  19. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  20. // CHECK:STDOUT: %tuple.type.2: type = tuple_type (%i32, %i32) [template]
  21. // CHECK:STDOUT: %int_12.1: Core.IntLiteral = int_value 12 [template]
  22. // CHECK:STDOUT: %int_6.1: Core.IntLiteral = int_value 6 [template]
  23. // CHECK:STDOUT: %tuple.type.3: type = tuple_type (Core.IntLiteral, Core.IntLiteral) [template]
  24. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  25. // CHECK:STDOUT: %Convert.type.10: type = fn_type @Convert.2, @impl.1(%int_32) [template]
  26. // CHECK:STDOUT: %Convert.10: %Convert.type.10 = struct_value () [template]
  27. // CHECK:STDOUT: %interface.5: <witness> = interface_witness (%Convert.10) [template]
  28. // CHECK:STDOUT: %Convert.bound.1: <bound method> = bound_method %int_12.1, %Convert.10 [template]
  29. // CHECK:STDOUT: %Convert.specific_fn.1: <specific function> = specific_function %Convert.bound.1, @Convert.2(%int_32) [template]
  30. // CHECK:STDOUT: %int_12.2: %i32 = int_value 12 [template]
  31. // CHECK:STDOUT: %Convert.bound.2: <bound method> = bound_method %int_6.1, %Convert.10 [template]
  32. // CHECK:STDOUT: %Convert.specific_fn.2: <specific function> = specific_function %Convert.bound.2, @Convert.2(%int_32) [template]
  33. // CHECK:STDOUT: %int_6.2: %i32 = int_value 6 [template]
  34. // CHECK:STDOUT: %tuple: %tuple.type.2 = tuple_value (%int_12.2, %int_6.2) [template]
  35. // CHECK:STDOUT: %int_10: Core.IntLiteral = int_value 10 [template]
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: imports {
  39. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  40. // CHECK:STDOUT: .Int = %import_ref.1
  41. // CHECK:STDOUT: .ImplicitAs = %import_ref.5
  42. // CHECK:STDOUT: .Negate = %import_ref.193
  43. // CHECK:STDOUT: import Core//prelude
  44. // CHECK:STDOUT: import Core//prelude/...
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT: }
  47. // CHECK:STDOUT:
  48. // CHECK:STDOUT: file {
  49. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  50. // CHECK:STDOUT: .Core = imports.%Core
  51. // CHECK:STDOUT: .a = %a
  52. // CHECK:STDOUT: .b = %b
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT: %Core.import = import Core
  55. // CHECK:STDOUT: %a.var: ref %tuple.type.2 = var a
  56. // CHECK:STDOUT: %a: ref %tuple.type.2 = bind_name a, %a.var
  57. // CHECK:STDOUT: %b.var: ref %i32 = var b
  58. // CHECK:STDOUT: %b: ref %i32 = bind_name b, %b.var
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: fn @__global_init() {
  62. // CHECK:STDOUT: !entry:
  63. // CHECK:STDOUT: %int_12: Core.IntLiteral = int_value 12 [template = constants.%int_12.1]
  64. // CHECK:STDOUT: %int_6: Core.IntLiteral = int_value 6 [template = constants.%int_6.1]
  65. // CHECK:STDOUT: %.loc11_27.1: %tuple.type.3 = tuple_literal (%int_12, %int_6)
  66. // CHECK:STDOUT: %impl.elem0.loc11_27.1: %Convert.type.2 = interface_witness_access constants.%interface.5, element0 [template = constants.%Convert.10]
  67. // CHECK:STDOUT: %Convert.bound.loc11_27.1: <bound method> = bound_method %int_12, %impl.elem0.loc11_27.1 [template = constants.%Convert.bound.1]
  68. // CHECK:STDOUT: %Convert.specific_fn.loc11_27.1: <specific function> = specific_function %Convert.bound.loc11_27.1, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.1]
  69. // CHECK:STDOUT: %int.convert_checked.loc11_27.1: init %i32 = call %Convert.specific_fn.loc11_27.1(%int_12) [template = constants.%int_12.2]
  70. // CHECK:STDOUT: %.loc11_27.2: init %i32 = converted %int_12, %int.convert_checked.loc11_27.1 [template = constants.%int_12.2]
  71. // CHECK:STDOUT: %tuple.elem0: ref %i32 = tuple_access file.%a.var, element0
  72. // CHECK:STDOUT: %.loc11_27.3: init %i32 = initialize_from %.loc11_27.2 to %tuple.elem0 [template = constants.%int_12.2]
  73. // CHECK:STDOUT: %impl.elem0.loc11_27.2: %Convert.type.2 = interface_witness_access constants.%interface.5, element0 [template = constants.%Convert.10]
  74. // CHECK:STDOUT: %Convert.bound.loc11_27.2: <bound method> = bound_method %int_6, %impl.elem0.loc11_27.2 [template = constants.%Convert.bound.2]
  75. // CHECK:STDOUT: %Convert.specific_fn.loc11_27.2: <specific function> = specific_function %Convert.bound.loc11_27.2, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.2]
  76. // CHECK:STDOUT: %int.convert_checked.loc11_27.2: init %i32 = call %Convert.specific_fn.loc11_27.2(%int_6) [template = constants.%int_6.2]
  77. // CHECK:STDOUT: %.loc11_27.4: init %i32 = converted %int_6, %int.convert_checked.loc11_27.2 [template = constants.%int_6.2]
  78. // CHECK:STDOUT: %tuple.elem1: ref %i32 = tuple_access file.%a.var, element1
  79. // CHECK:STDOUT: %.loc11_27.5: init %i32 = initialize_from %.loc11_27.4 to %tuple.elem1 [template = constants.%int_6.2]
  80. // CHECK:STDOUT: %.loc11_27.6: init %tuple.type.2 = tuple_init (%.loc11_27.3, %.loc11_27.5) to file.%a.var [template = constants.%tuple]
  81. // CHECK:STDOUT: %.loc11_28: init %tuple.type.2 = converted %.loc11_27.1, %.loc11_27.6 [template = constants.%tuple]
  82. // CHECK:STDOUT: assign file.%a.var, %.loc11_28
  83. // CHECK:STDOUT: %a.ref: ref %tuple.type.2 = name_ref a, file.%a
  84. // CHECK:STDOUT: %int_10: Core.IntLiteral = int_value 10 [template = constants.%int_10]
  85. // CHECK:STDOUT: assign file.%b.var, <error>
  86. // CHECK:STDOUT: return
  87. // CHECK:STDOUT: }
  88. // CHECK:STDOUT: