todo_define_not_default.carbon 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. interface I {
  7. // TODO: A definition without `default` in an interface should be rejected.
  8. fn F() {}
  9. fn G(a: i32, b: i32) -> i32 = "int.sadd";
  10. // TODO: An associated constant with an initializer without `default` in an
  11. // interface should be rejected.
  12. let T:! type = (i32, i32);
  13. let N:! i32 = 42;
  14. }
  15. // CHECK:STDOUT: --- todo_define_not_default.carbon
  16. // CHECK:STDOUT:
  17. // CHECK:STDOUT: constants {
  18. // CHECK:STDOUT: %.1: type = interface_type @I [template]
  19. // CHECK:STDOUT: %Self: I = bind_symbolic_name Self 0 [symbolic]
  20. // CHECK:STDOUT: %F: type = fn_type @F [template]
  21. // CHECK:STDOUT: %.2: type = tuple_type () [template]
  22. // CHECK:STDOUT: %struct.1: F = struct_value () [template]
  23. // CHECK:STDOUT: %.3: type = assoc_entity_type @I, F [template]
  24. // CHECK:STDOUT: %.4: <associated F in I> = assoc_entity element0, @I.%F.decl [template]
  25. // CHECK:STDOUT: %G: type = fn_type @G [template]
  26. // CHECK:STDOUT: %struct.2: G = struct_value () [template]
  27. // CHECK:STDOUT: %.5: type = assoc_entity_type @I, G [template]
  28. // CHECK:STDOUT: %.6: <associated G in I> = assoc_entity element1, @I.%G.decl [template]
  29. // CHECK:STDOUT: %.7: type = tuple_type (type, type) [template]
  30. // CHECK:STDOUT: %.8: type = tuple_type (i32, i32) [template]
  31. // CHECK:STDOUT: %.9: type = assoc_entity_type @I, type [template]
  32. // CHECK:STDOUT: %.10: <associated type in I> = assoc_entity element2, @I.%T [template]
  33. // CHECK:STDOUT: %.11: i32 = int_literal 42 [template]
  34. // CHECK:STDOUT: %.12: type = assoc_entity_type @I, i32 [template]
  35. // CHECK:STDOUT: %.13: <associated i32 in I> = assoc_entity element3, @I.%N [template]
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: file {
  39. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  40. // CHECK:STDOUT: .Core = %Core
  41. // CHECK:STDOUT: .I = %I.decl
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  44. // CHECK:STDOUT: %I.decl: type = interface_decl @I [template = constants.%.1] {}
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT:
  47. // CHECK:STDOUT: interface @I {
  48. // CHECK:STDOUT: %Self: I = bind_symbolic_name Self 0 [symbolic = constants.%Self]
  49. // CHECK:STDOUT: %F.decl: F = fn_decl @F [template = constants.%struct.1] {}
  50. // CHECK:STDOUT: %.loc9: <associated F in I> = assoc_entity element0, %F.decl [template = constants.%.4]
  51. // CHECK:STDOUT: %G.decl: G = fn_decl @G [template = constants.%struct.2] {
  52. // CHECK:STDOUT: %a.loc10_8.1: i32 = param a
  53. // CHECK:STDOUT: %a.loc10_8.2: i32 = bind_name a, %a.loc10_8.1
  54. // CHECK:STDOUT: %b.loc10_16.1: i32 = param b
  55. // CHECK:STDOUT: %b.loc10_16.2: i32 = bind_name b, %b.loc10_16.1
  56. // CHECK:STDOUT: %return.var: ref i32 = var <return slot>
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT: %.loc10: <associated G in I> = assoc_entity element1, %G.decl [template = constants.%.6]
  59. // CHECK:STDOUT: %.loc14_27: (type, type) = tuple_literal (i32, i32)
  60. // CHECK:STDOUT: %.loc14_28.1: type = converted %.loc14_27, constants.%.8 [template = constants.%.8]
  61. // CHECK:STDOUT: %T: type = assoc_const_decl T [template]
  62. // CHECK:STDOUT: %.loc14_28.2: <associated type in I> = assoc_entity element2, %T [template = constants.%.10]
  63. // CHECK:STDOUT: %.loc15_17: i32 = int_literal 42 [template = constants.%.11]
  64. // CHECK:STDOUT: %N: i32 = assoc_const_decl N [template]
  65. // CHECK:STDOUT: %.loc15_19: <associated i32 in I> = assoc_entity element3, %N [template = constants.%.13]
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: !members:
  68. // CHECK:STDOUT: .Self = %Self
  69. // CHECK:STDOUT: .F = %.loc9
  70. // CHECK:STDOUT: .G = %.loc10
  71. // CHECK:STDOUT: .T = %.loc14_28.2
  72. // CHECK:STDOUT: .N = %.loc15_19
  73. // CHECK:STDOUT: witness = (%F.decl, %G.decl, %T, %N)
  74. // CHECK:STDOUT: }
  75. // CHECK:STDOUT:
  76. // CHECK:STDOUT: fn @F() {
  77. // CHECK:STDOUT: !entry:
  78. // CHECK:STDOUT: return
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT:
  81. // CHECK:STDOUT: fn @G(@I.%a.loc10_8.2: i32, @I.%b.loc10_16.2: i32) -> i32 = "int.sadd";
  82. // CHECK:STDOUT: