fail_todo_define_default_fn_inline.carbon 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. // TODO: Add ranges and switch to "--dump-sem-ir-ranges=only".
  6. // EXTRA-ARGS: --dump-sem-ir-ranges=if-present
  7. //
  8. // AUTOUPDATE
  9. // TIP: To test this file alone, run:
  10. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/interface/fail_todo_define_default_fn_inline.carbon
  11. // TIP: To dump output, run:
  12. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interface/fail_todo_define_default_fn_inline.carbon
  13. interface Interface {
  14. // CHECK:STDERR: fail_todo_define_default_fn_inline.carbon:[[@LINE+4]]:3: error: semantics TODO: `interface modifier` [SemanticsTodo]
  15. // CHECK:STDERR: default fn F() {}
  16. // CHECK:STDERR: ^~~~~~~
  17. // CHECK:STDERR:
  18. default fn F() {}
  19. // CHECK:STDERR: fail_todo_define_default_fn_inline.carbon:[[@LINE+4]]:3: error: semantics TODO: `interface modifier` [SemanticsTodo]
  20. // CHECK:STDERR: default fn G(a: i32, b: i32) -> i32 = "int.sadd";
  21. // CHECK:STDERR: ^~~~~~~
  22. // CHECK:STDERR:
  23. default fn G(a: i32, b: i32) -> i32 = "int.sadd";
  24. }
  25. // CHECK:STDOUT: --- fail_todo_define_default_fn_inline.carbon
  26. // CHECK:STDOUT:
  27. // CHECK:STDOUT: constants {
  28. // CHECK:STDOUT: %Interface.type: type = facet_type <@Interface> [concrete]
  29. // CHECK:STDOUT: %Self: %Interface.type = bind_symbolic_name Self, 0 [symbolic]
  30. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  31. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  32. // CHECK:STDOUT: %Interface.assoc_type: type = assoc_entity_type @Interface [concrete]
  33. // CHECK:STDOUT: %assoc0: %Interface.assoc_type = assoc_entity element0, @Interface.%F.decl [concrete]
  34. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  35. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  36. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  37. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  38. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  39. // CHECK:STDOUT: %G.type: type = fn_type @G [concrete]
  40. // CHECK:STDOUT: %G: %G.type = struct_value () [concrete]
  41. // CHECK:STDOUT: %assoc1: %Interface.assoc_type = assoc_entity element1, @Interface.%G.decl [concrete]
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: imports {
  45. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  46. // CHECK:STDOUT: .Int = %Core.Int
  47. // CHECK:STDOUT: import Core//prelude
  48. // CHECK:STDOUT: import Core//prelude/...
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/types/int, Int, loaded [concrete = constants.%Int.generic]
  51. // CHECK:STDOUT: }
  52. // CHECK:STDOUT:
  53. // CHECK:STDOUT: file {
  54. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  55. // CHECK:STDOUT: .Core = imports.%Core
  56. // CHECK:STDOUT: .Interface = %Interface.decl
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT: %Core.import = import Core
  59. // CHECK:STDOUT: %Interface.decl: type = interface_decl @Interface [concrete = constants.%Interface.type] {} {}
  60. // CHECK:STDOUT: }
  61. // CHECK:STDOUT:
  62. // CHECK:STDOUT: interface @Interface {
  63. // CHECK:STDOUT: %Self: %Interface.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  64. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  65. // CHECK:STDOUT: %assoc0: %Interface.assoc_type = assoc_entity element0, %F.decl [concrete = constants.%assoc0]
  66. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [concrete = constants.%G] {
  67. // CHECK:STDOUT: %a.patt: %pattern_type.7ce = binding_pattern a [concrete]
  68. // CHECK:STDOUT: %a.param_patt: %pattern_type.7ce = value_param_pattern %a.patt, call_param0 [concrete]
  69. // CHECK:STDOUT: %b.patt: %pattern_type.7ce = binding_pattern b [concrete]
  70. // CHECK:STDOUT: %b.param_patt: %pattern_type.7ce = value_param_pattern %b.patt, call_param1 [concrete]
  71. // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
  72. // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param2 [concrete]
  73. // CHECK:STDOUT: } {
  74. // CHECK:STDOUT: %int_32.loc25_35: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  75. // CHECK:STDOUT: %i32.loc25_35: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  76. // CHECK:STDOUT: %a.param: %i32 = value_param call_param0
  77. // CHECK:STDOUT: %.loc25_19: type = splice_block %i32.loc25_19 [concrete = constants.%i32] {
  78. // CHECK:STDOUT: %int_32.loc25_19: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  79. // CHECK:STDOUT: %i32.loc25_19: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  80. // CHECK:STDOUT: }
  81. // CHECK:STDOUT: %a: %i32 = bind_name a, %a.param
  82. // CHECK:STDOUT: %b.param: %i32 = value_param call_param1
  83. // CHECK:STDOUT: %.loc25_27: type = splice_block %i32.loc25_27 [concrete = constants.%i32] {
  84. // CHECK:STDOUT: %int_32.loc25_27: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  85. // CHECK:STDOUT: %i32.loc25_27: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  86. // CHECK:STDOUT: }
  87. // CHECK:STDOUT: %b: %i32 = bind_name b, %b.param
  88. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param2
  89. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  90. // CHECK:STDOUT: }
  91. // CHECK:STDOUT: %assoc1: %Interface.assoc_type = assoc_entity element1, %G.decl [concrete = constants.%assoc1]
  92. // CHECK:STDOUT:
  93. // CHECK:STDOUT: !members:
  94. // CHECK:STDOUT: .Self = %Self
  95. // CHECK:STDOUT: .F = %assoc0
  96. // CHECK:STDOUT: .G = %assoc1
  97. // CHECK:STDOUT: witness = (%F.decl, %G.decl)
  98. // CHECK:STDOUT: }
  99. // CHECK:STDOUT:
  100. // CHECK:STDOUT: generic fn @F(@Interface.%Self: %Interface.type) {
  101. // CHECK:STDOUT: !definition:
  102. // CHECK:STDOUT:
  103. // CHECK:STDOUT: fn() {
  104. // CHECK:STDOUT: !entry:
  105. // CHECK:STDOUT: return
  106. // CHECK:STDOUT: }
  107. // CHECK:STDOUT: }
  108. // CHECK:STDOUT:
  109. // CHECK:STDOUT: generic fn @G(@Interface.%Self: %Interface.type) {
  110. // CHECK:STDOUT: !definition:
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: fn(%a.param: %i32, %b.param: %i32) -> %i32 = "int.sadd";
  113. // CHECK:STDOUT: }
  114. // CHECK:STDOUT:
  115. // CHECK:STDOUT: specific @F(constants.%Self) {}
  116. // CHECK:STDOUT:
  117. // CHECK:STDOUT: specific @G(constants.%Self) {}
  118. // CHECK:STDOUT: