fail_assoc_const_bad_default.carbon 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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/interface/fail_assoc_const_bad_default.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interface/fail_assoc_const_bad_default.carbon
  10. interface I {
  11. // CHECK:STDERR: fail_assoc_const_bad_default.carbon:[[@LINE+6]]:3: error: cannot implicitly convert from `i32` to `type` [ImplicitAsConversionFailure]
  12. // CHECK:STDERR: let T:! type = 42;
  13. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~
  14. // CHECK:STDERR: fail_assoc_const_bad_default.carbon:[[@LINE+3]]:3: note: type `i32` does not implement interface `ImplicitAs(type)` [MissingImplInMemberAccessNote]
  15. // CHECK:STDERR: let T:! type = 42;
  16. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~
  17. let T:! type = 42;
  18. }
  19. // CHECK:STDOUT: --- fail_assoc_const_bad_default.carbon
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: constants {
  22. // CHECK:STDOUT: %I.type: type = facet_type <@I> [template]
  23. // CHECK:STDOUT: %Self.1: %I.type = bind_symbolic_name Self, 0 [symbolic]
  24. // CHECK:STDOUT: %.1: i32 = int_value 42 [template]
  25. // CHECK:STDOUT: %ImplicitAs.type.1: type = generic_interface_type @ImplicitAs [template]
  26. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
  27. // CHECK:STDOUT: %ImplicitAs: %ImplicitAs.type.1 = struct_value () [template]
  28. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic]
  29. // CHECK:STDOUT: %ImplicitAs.type.2: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic]
  30. // CHECK:STDOUT: %Self.2: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.2) = bind_symbolic_name Self, 1 [symbolic]
  31. // CHECK:STDOUT: %Dest.patt: type = symbolic_binding_pattern Dest, 0 [symbolic]
  32. // CHECK:STDOUT: %Self.3: %ImplicitAs.type.2 = bind_symbolic_name Self, 1 [symbolic]
  33. // CHECK:STDOUT: %Convert.type.1: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic]
  34. // CHECK:STDOUT: %Convert.1: %Convert.type.1 = struct_value () [symbolic]
  35. // CHECK:STDOUT: %.2: type = assoc_entity_type %ImplicitAs.type.2, %Convert.type.1 [symbolic]
  36. // CHECK:STDOUT: %.3: %.2 = assoc_entity element0, imports.%import_ref.5 [symbolic]
  37. // CHECK:STDOUT: %ImplicitAs.type.3: type = facet_type <@ImplicitAs, @ImplicitAs(type)> [template]
  38. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert, @ImplicitAs(type) [template]
  39. // CHECK:STDOUT: %Convert.2: %Convert.type.2 = struct_value () [template]
  40. // CHECK:STDOUT: %.4: type = assoc_entity_type %ImplicitAs.type.3, %Convert.type.2 [template]
  41. // CHECK:STDOUT: %.5: %.4 = assoc_entity element0, imports.%import_ref.5 [template]
  42. // CHECK:STDOUT: %.6: %.2 = assoc_entity element0, imports.%import_ref.6 [symbolic]
  43. // CHECK:STDOUT: %.7: type = assoc_entity_type %I.type, type [template]
  44. // CHECK:STDOUT: %.8: %.7 = assoc_entity element0, @I.%T [template]
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT:
  47. // CHECK:STDOUT: imports {
  48. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  49. // CHECK:STDOUT: .ImplicitAs = %import_ref.1
  50. // CHECK:STDOUT: import Core//prelude
  51. // CHECK:STDOUT: import Core//prelude/...
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT: %import_ref.1: %ImplicitAs.type.1 = import_ref Core//prelude/operators/as, inst+48, loaded [template = constants.%ImplicitAs]
  54. // CHECK:STDOUT: %import_ref.2 = import_ref Core//prelude/operators/as, inst+54, unloaded
  55. // CHECK:STDOUT: %import_ref.3: @ImplicitAs.%.1 (%.2) = import_ref Core//prelude/operators/as, inst+76, loaded [symbolic = @ImplicitAs.%.2 (constants.%.6)]
  56. // CHECK:STDOUT: %import_ref.4 = import_ref Core//prelude/operators/as, inst+69, unloaded
  57. // CHECK:STDOUT: %import_ref.5 = import_ref Core//prelude/operators/as, inst+69, unloaded
  58. // CHECK:STDOUT: %import_ref.6 = import_ref Core//prelude/operators/as, inst+69, unloaded
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: file {
  62. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  63. // CHECK:STDOUT: .Core = imports.%Core
  64. // CHECK:STDOUT: .I = %I.decl
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT: %Core.import = import Core
  67. // CHECK:STDOUT: %I.decl: type = interface_decl @I [template = constants.%I.type] {} {}
  68. // CHECK:STDOUT: }
  69. // CHECK:STDOUT:
  70. // CHECK:STDOUT: interface @I {
  71. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.1]
  72. // CHECK:STDOUT: %.loc18_18: i32 = int_value 42 [template = constants.%.1]
  73. // CHECK:STDOUT: %.loc18_20.1: type = converted %.loc18_18, <error> [template = <error>]
  74. // CHECK:STDOUT: %T: type = assoc_const_decl T [template]
  75. // CHECK:STDOUT: %.loc18_20.2: %.7 = assoc_entity element0, %T [template = constants.%.8]
  76. // CHECK:STDOUT:
  77. // CHECK:STDOUT: !members:
  78. // CHECK:STDOUT: .Self = %Self
  79. // CHECK:STDOUT: .T = %.loc18_20.2
  80. // CHECK:STDOUT: witness = (%T)
  81. // CHECK:STDOUT: }
  82. // CHECK:STDOUT:
  83. // CHECK:STDOUT: generic interface @ImplicitAs(constants.%Dest: type) {
  84. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  85. // CHECK:STDOUT: %Dest.patt: type = symbolic_binding_pattern Dest, 0 [symbolic = %Dest.patt (constants.%Dest.patt)]
  86. // CHECK:STDOUT:
  87. // CHECK:STDOUT: !definition:
  88. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.2)]
  89. // CHECK:STDOUT: %Self: %ImplicitAs.type.2 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.3)]
  90. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic = %Convert.type (constants.%Convert.type.1)]
  91. // CHECK:STDOUT: %Convert: @ImplicitAs.%Convert.type (%Convert.type.1) = struct_value () [symbolic = %Convert (constants.%Convert.1)]
  92. // CHECK:STDOUT: %.1: type = assoc_entity_type @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.2), @ImplicitAs.%Convert.type (%Convert.type.1) [symbolic = %.1 (constants.%.2)]
  93. // CHECK:STDOUT: %.2: @ImplicitAs.%.1 (%.2) = assoc_entity element0, imports.%import_ref.5 [symbolic = %.2 (constants.%.3)]
  94. // CHECK:STDOUT:
  95. // CHECK:STDOUT: interface {
  96. // CHECK:STDOUT: !members:
  97. // CHECK:STDOUT: .Self = imports.%import_ref.2
  98. // CHECK:STDOUT: .Convert = imports.%import_ref.3
  99. // CHECK:STDOUT: witness = (imports.%import_ref.4)
  100. // CHECK:STDOUT: }
  101. // CHECK:STDOUT: }
  102. // CHECK:STDOUT:
  103. // CHECK:STDOUT: generic fn @Convert(constants.%Dest: type, constants.%Self.2: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.2)) {
  104. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  105. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.2)]
  106. // CHECK:STDOUT: %Self: %ImplicitAs.type.2 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.3)]
  107. // CHECK:STDOUT:
  108. // CHECK:STDOUT: fn[%self.param_patt: @Convert.%Self (%Self.3)]() -> @Convert.%Dest (%Dest);
  109. // CHECK:STDOUT: }
  110. // CHECK:STDOUT:
  111. // CHECK:STDOUT: specific @ImplicitAs(constants.%Dest) {
  112. // CHECK:STDOUT: %Dest => constants.%Dest
  113. // CHECK:STDOUT: %Dest.patt => constants.%Dest
  114. // CHECK:STDOUT: }
  115. // CHECK:STDOUT:
  116. // CHECK:STDOUT: specific @ImplicitAs(@ImplicitAs.%Dest) {
  117. // CHECK:STDOUT: %Dest => constants.%Dest
  118. // CHECK:STDOUT: %Dest.patt => constants.%Dest
  119. // CHECK:STDOUT: }
  120. // CHECK:STDOUT:
  121. // CHECK:STDOUT: specific @ImplicitAs(@Convert.%Dest) {
  122. // CHECK:STDOUT: %Dest => constants.%Dest
  123. // CHECK:STDOUT: %Dest.patt => constants.%Dest
  124. // CHECK:STDOUT: }
  125. // CHECK:STDOUT:
  126. // CHECK:STDOUT: specific @Convert(constants.%Dest, constants.%Self.2) {
  127. // CHECK:STDOUT: %Dest => constants.%Dest
  128. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.2
  129. // CHECK:STDOUT: %Self => constants.%Self.2
  130. // CHECK:STDOUT: }
  131. // CHECK:STDOUT:
  132. // CHECK:STDOUT: specific @ImplicitAs(type) {
  133. // CHECK:STDOUT: %Dest => type
  134. // CHECK:STDOUT: %Dest.patt => type
  135. // CHECK:STDOUT:
  136. // CHECK:STDOUT: !definition:
  137. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.3
  138. // CHECK:STDOUT: %Self => constants.%Self.3
  139. // CHECK:STDOUT: %Convert.type => constants.%Convert.type.2
  140. // CHECK:STDOUT: %Convert => constants.%Convert.2
  141. // CHECK:STDOUT: %.1 => constants.%.4
  142. // CHECK:STDOUT: %.2 => constants.%.5
  143. // CHECK:STDOUT: }
  144. // CHECK:STDOUT: