default_fn.carbon 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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/no_prelude/default_fn.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interface/no_prelude/default_fn.carbon
  10. class C {
  11. interface I {
  12. // TODO: Use `default` here.
  13. fn F[self: Self]() {
  14. // I and F are both complete here, and the impl below is in scope.
  15. var c: C = {};
  16. c.(I.F)();
  17. }
  18. }
  19. impl C as I {
  20. fn F[self: Self]() {}
  21. }
  22. }
  23. // CHECK:STDOUT: --- default_fn.carbon
  24. // CHECK:STDOUT:
  25. // CHECK:STDOUT: constants {
  26. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  27. // CHECK:STDOUT: %I.type: type = facet_type <@I> [concrete]
  28. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic]
  29. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  30. // CHECK:STDOUT: %F.type.0b5: type = fn_type @F.1 [concrete]
  31. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  32. // CHECK:STDOUT: %F.20c: %F.type.0b5 = struct_value () [concrete]
  33. // CHECK:STDOUT: %I.assoc_type: type = assoc_entity_type @I [concrete]
  34. // CHECK:STDOUT: %assoc0: %I.assoc_type = assoc_entity element0, @I.%F.decl [concrete]
  35. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%F.decl) [concrete]
  36. // CHECK:STDOUT: %F.type.4a2: type = fn_type @F.2 [concrete]
  37. // CHECK:STDOUT: %F.eb2: %F.type.4a2 = struct_value () [concrete]
  38. // CHECK:STDOUT: %I.facet: %I.type = facet_value %C, (%impl_witness) [concrete]
  39. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  40. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  41. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %Self.as_type [symbolic]
  42. // CHECK:STDOUT: %C.val: %C = struct_value () [concrete]
  43. // CHECK:STDOUT: %.56c: type = fn_type_with_self_type %F.type.0b5, %I.facet [concrete]
  44. // CHECK:STDOUT: }
  45. // CHECK:STDOUT:
  46. // CHECK:STDOUT: file {
  47. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  48. // CHECK:STDOUT: .C = %C.decl
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT: %C.decl: type = class_decl @C [concrete = constants.%C] {} {}
  51. // CHECK:STDOUT: }
  52. // CHECK:STDOUT:
  53. // CHECK:STDOUT: interface @I {
  54. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  55. // CHECK:STDOUT: %F.decl: %F.type.0b5 = fn_decl @F.1 [concrete = constants.%F.20c] {
  56. // CHECK:STDOUT: %self.patt: @F.1.%Self.as_type.loc14_16.1 (%Self.as_type) = binding_pattern self
  57. // CHECK:STDOUT: %self.param_patt: @F.1.%Self.as_type.loc14_16.1 (%Self.as_type) = value_param_pattern %self.patt, call_param0
  58. // CHECK:STDOUT: } {
  59. // CHECK:STDOUT: %self.param: @F.1.%Self.as_type.loc14_16.1 (%Self.as_type) = value_param call_param0
  60. // CHECK:STDOUT: %.loc14_16.1: type = splice_block %.loc14_16.2 [symbolic = %Self.as_type.loc14_16.1 (constants.%Self.as_type)] {
  61. // CHECK:STDOUT: %Self.ref: %I.type = name_ref Self, @I.%Self [symbolic = %Self (constants.%Self)]
  62. // CHECK:STDOUT: %Self.as_type.loc14_16.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc14_16.1 (constants.%Self.as_type)]
  63. // CHECK:STDOUT: %.loc14_16.2: type = converted %Self.ref, %Self.as_type.loc14_16.2 [symbolic = %Self.as_type.loc14_16.1 (constants.%Self.as_type)]
  64. // CHECK:STDOUT: }
  65. // CHECK:STDOUT: %self: @F.1.%Self.as_type.loc14_16.1 (%Self.as_type) = bind_name self, %self.param
  66. // CHECK:STDOUT: }
  67. // CHECK:STDOUT: %assoc0: %I.assoc_type = assoc_entity element0, %F.decl [concrete = constants.%assoc0]
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: !members:
  70. // CHECK:STDOUT: .Self = %Self
  71. // CHECK:STDOUT: .F = %assoc0
  72. // CHECK:STDOUT: .C = <poisoned>
  73. // CHECK:STDOUT: .I = <poisoned>
  74. // CHECK:STDOUT: witness = (%F.decl)
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT:
  77. // CHECK:STDOUT: impl @impl: %C.ref as %I.ref {
  78. // CHECK:STDOUT: %F.decl: %F.type.4a2 = fn_decl @F.2 [concrete = constants.%F.eb2] {
  79. // CHECK:STDOUT: %self.patt: %C = binding_pattern self
  80. // CHECK:STDOUT: %self.param_patt: %C = value_param_pattern %self.patt, call_param0
  81. // CHECK:STDOUT: } {
  82. // CHECK:STDOUT: %self.param: %C = value_param call_param0
  83. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.%C.ref [concrete = constants.%C]
  84. // CHECK:STDOUT: %self: %C = bind_name self, %self.param
  85. // CHECK:STDOUT: }
  86. // CHECK:STDOUT:
  87. // CHECK:STDOUT: !members:
  88. // CHECK:STDOUT: .F = %F.decl
  89. // CHECK:STDOUT: witness = @C.%impl_witness
  90. // CHECK:STDOUT: }
  91. // CHECK:STDOUT:
  92. // CHECK:STDOUT: class @C {
  93. // CHECK:STDOUT: %I.decl: type = interface_decl @I [concrete = constants.%I.type] {} {}
  94. // CHECK:STDOUT: impl_decl @impl [concrete] {} {
  95. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  96. // CHECK:STDOUT: %I.ref: type = name_ref I, @C.%I.decl [concrete = constants.%I.type]
  97. // CHECK:STDOUT: }
  98. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%F.decl) [concrete = constants.%impl_witness]
  99. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type]
  100. // CHECK:STDOUT: complete_type_witness = %complete_type
  101. // CHECK:STDOUT:
  102. // CHECK:STDOUT: !members:
  103. // CHECK:STDOUT: .Self = constants.%C
  104. // CHECK:STDOUT: .I = %I.decl
  105. // CHECK:STDOUT: .C = <poisoned>
  106. // CHECK:STDOUT: }
  107. // CHECK:STDOUT:
  108. // CHECK:STDOUT: generic fn @F.1(@I.%Self: %I.type) {
  109. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  110. // CHECK:STDOUT: %Self.as_type.loc14_16.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc14_16.1 (constants.%Self.as_type)]
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: !definition:
  113. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type @F.1.%Self.as_type.loc14_16.1 (%Self.as_type) [symbolic = %require_complete (constants.%require_complete)]
  114. // CHECK:STDOUT:
  115. // CHECK:STDOUT: fn[%self.param_patt: @F.1.%Self.as_type.loc14_16.1 (%Self.as_type)]() {
  116. // CHECK:STDOUT: !entry:
  117. // CHECK:STDOUT: name_binding_decl {
  118. // CHECK:STDOUT: %c.patt: %C = binding_pattern c
  119. // CHECK:STDOUT: %.loc16_7.1: %C = var_pattern %c.patt
  120. // CHECK:STDOUT: }
  121. // CHECK:STDOUT: %c.var: ref %C = var c
  122. // CHECK:STDOUT: %.loc16_19.1: %empty_struct_type = struct_literal ()
  123. // CHECK:STDOUT: %.loc16_19.2: init %C = class_init (), %c.var [concrete = constants.%C.val]
  124. // CHECK:STDOUT: %.loc16_7.2: init %C = converted %.loc16_19.1, %.loc16_19.2 [concrete = constants.%C.val]
  125. // CHECK:STDOUT: assign %c.var, %.loc16_7.2
  126. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  127. // CHECK:STDOUT: %c: ref %C = bind_name c, %c.var
  128. // CHECK:STDOUT: %c.ref: ref %C = name_ref c, %c
  129. // CHECK:STDOUT: %I.ref: type = name_ref I, @C.%I.decl [concrete = constants.%I.type]
  130. // CHECK:STDOUT: %F.ref: %I.assoc_type = name_ref F, @I.%assoc0 [concrete = constants.%assoc0]
  131. // CHECK:STDOUT: %impl.elem0: %.56c = impl_witness_access constants.%impl_witness, element0 [concrete = constants.%F.eb2]
  132. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %c.ref, %impl.elem0
  133. // CHECK:STDOUT: %.loc17: %C = bind_value %c.ref
  134. // CHECK:STDOUT: %F.call: init %empty_tuple.type = call %bound_method(%.loc17)
  135. // CHECK:STDOUT: return
  136. // CHECK:STDOUT: }
  137. // CHECK:STDOUT: }
  138. // CHECK:STDOUT:
  139. // CHECK:STDOUT: fn @F.2[%self.param_patt: %C]() {
  140. // CHECK:STDOUT: !entry:
  141. // CHECK:STDOUT: return
  142. // CHECK:STDOUT: }
  143. // CHECK:STDOUT:
  144. // CHECK:STDOUT: specific @F.1(constants.%Self) {
  145. // CHECK:STDOUT: %Self => constants.%Self
  146. // CHECK:STDOUT: %Self.as_type.loc14_16.1 => constants.%Self.as_type
  147. // CHECK:STDOUT: }
  148. // CHECK:STDOUT:
  149. // CHECK:STDOUT: specific @F.1(constants.%I.facet) {
  150. // CHECK:STDOUT: %Self => constants.%I.facet
  151. // CHECK:STDOUT: %Self.as_type.loc14_16.1 => constants.%C
  152. // CHECK:STDOUT: }
  153. // CHECK:STDOUT: