fail_assoc_const_bad_default.carbon 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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`
  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`
  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: %.1: type = interface_type @I [template]
  23. // CHECK:STDOUT: %Self.1: %.1 = bind_symbolic_name Self, 0 [symbolic]
  24. // CHECK:STDOUT: %.2: i32 = int_literal 42 [template]
  25. // CHECK:STDOUT: %ImplicitAs.type: type = generic_interface_type @ImplicitAs [template]
  26. // CHECK:STDOUT: %.3: type = tuple_type () [template]
  27. // CHECK:STDOUT: %ImplicitAs: %ImplicitAs.type = struct_value () [template]
  28. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic]
  29. // CHECK:STDOUT: %.4: type = interface_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic]
  30. // CHECK:STDOUT: %Self.2: @ImplicitAs.%.1 (%.4) = bind_symbolic_name Self, 1 [symbolic]
  31. // CHECK:STDOUT: %Self.3: %.4 = bind_symbolic_name Self, 1 [symbolic]
  32. // CHECK:STDOUT: %Convert.type.1: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic]
  33. // CHECK:STDOUT: %Convert.1: %Convert.type.1 = struct_value () [symbolic]
  34. // CHECK:STDOUT: %.5: type = assoc_entity_type %.4, %Convert.type.1 [symbolic]
  35. // CHECK:STDOUT: %.6: %.5 = assoc_entity element0, imports.%import_ref.5 [symbolic]
  36. // CHECK:STDOUT: %.7: type = interface_type @ImplicitAs, @ImplicitAs(type) [template]
  37. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert, @ImplicitAs(type) [template]
  38. // CHECK:STDOUT: %Convert.2: %Convert.type.2 = struct_value () [template]
  39. // CHECK:STDOUT: %.8: type = assoc_entity_type %.7, %Convert.type.2 [template]
  40. // CHECK:STDOUT: %.9: %.8 = assoc_entity element0, imports.%import_ref.5 [template]
  41. // CHECK:STDOUT: %.10: %.5 = assoc_entity element0, imports.%import_ref.6 [symbolic]
  42. // CHECK:STDOUT: %.11: type = assoc_entity_type %.1, type [template]
  43. // CHECK:STDOUT: %.12: %.11 = assoc_entity element0, @I.%T [template]
  44. // CHECK:STDOUT: }
  45. // CHECK:STDOUT:
  46. // CHECK:STDOUT: imports {
  47. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  48. // CHECK:STDOUT: .ImplicitAs = %import_ref.1
  49. // CHECK:STDOUT: import Core//prelude
  50. // CHECK:STDOUT: import Core//prelude/operators
  51. // CHECK:STDOUT: import Core//prelude/types
  52. // CHECK:STDOUT: import Core//prelude/operators/arithmetic
  53. // CHECK:STDOUT: import Core//prelude/operators/as
  54. // CHECK:STDOUT: import Core//prelude/operators/bitwise
  55. // CHECK:STDOUT: import Core//prelude/operators/comparison
  56. // CHECK:STDOUT: import Core//prelude/types/bool
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT: %import_ref.1: %ImplicitAs.type = import_ref Core//prelude/operators/as, inst+40, loaded [template = constants.%ImplicitAs]
  59. // CHECK:STDOUT: %import_ref.2 = import_ref Core//prelude/operators/as, inst+45, unloaded
  60. // CHECK:STDOUT: %import_ref.3: @ImplicitAs.%.2 (%.5) = import_ref Core//prelude/operators/as, inst+63, loaded [symbolic = @ImplicitAs.%.3 (constants.%.10)]
  61. // CHECK:STDOUT: %import_ref.4 = import_ref Core//prelude/operators/as, inst+56, unloaded
  62. // CHECK:STDOUT: %import_ref.5 = import_ref Core//prelude/operators/as, inst+56, unloaded
  63. // CHECK:STDOUT: %import_ref.6 = import_ref Core//prelude/operators/as, inst+56, unloaded
  64. // CHECK:STDOUT: }
  65. // CHECK:STDOUT:
  66. // CHECK:STDOUT: file {
  67. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  68. // CHECK:STDOUT: .Core = imports.%Core
  69. // CHECK:STDOUT: .I = %I.decl
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT: %Core.import = import Core
  72. // CHECK:STDOUT: %I.decl: type = interface_decl @I [template = constants.%.1] {} {}
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT:
  75. // CHECK:STDOUT: interface @I {
  76. // CHECK:STDOUT: %Self: %.1 = bind_symbolic_name Self, 0 [symbolic = constants.%Self.1]
  77. // CHECK:STDOUT: %.loc18_18: i32 = int_literal 42 [template = constants.%.2]
  78. // CHECK:STDOUT: %.loc18_20.1: type = interface_type @ImplicitAs, @ImplicitAs(type) [template = constants.%.7]
  79. // CHECK:STDOUT: %.loc18_20.2: %.8 = specific_constant imports.%import_ref.3, @ImplicitAs(type) [template = constants.%.9]
  80. // CHECK:STDOUT: %Convert.ref: %.8 = name_ref Convert, %.loc18_20.2 [template = constants.%.9]
  81. // CHECK:STDOUT: %.loc18_20.3: type = converted %.loc18_18, <error> [template = <error>]
  82. // CHECK:STDOUT: %T: type = assoc_const_decl T [template]
  83. // CHECK:STDOUT: %.loc18_20.4: %.11 = assoc_entity element0, %T [template = constants.%.12]
  84. // CHECK:STDOUT:
  85. // CHECK:STDOUT: !members:
  86. // CHECK:STDOUT: .Self = %Self
  87. // CHECK:STDOUT: .T = %.loc18_20.4
  88. // CHECK:STDOUT: witness = (%T)
  89. // CHECK:STDOUT: }
  90. // CHECK:STDOUT:
  91. // CHECK:STDOUT: generic interface @ImplicitAs(constants.%Dest: type) {
  92. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  93. // CHECK:STDOUT:
  94. // CHECK:STDOUT: !definition:
  95. // CHECK:STDOUT: %.1: type = interface_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic = %.1 (constants.%.4)]
  96. // CHECK:STDOUT: %Self: %.4 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.3)]
  97. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic = %Convert.type (constants.%Convert.type.1)]
  98. // CHECK:STDOUT: %Convert: @ImplicitAs.%Convert.type (%Convert.type.1) = struct_value () [symbolic = %Convert (constants.%Convert.1)]
  99. // CHECK:STDOUT: %.2: type = assoc_entity_type @ImplicitAs.%.1 (%.4), @ImplicitAs.%Convert.type (%Convert.type.1) [symbolic = %.2 (constants.%.5)]
  100. // CHECK:STDOUT: %.3: @ImplicitAs.%.2 (%.5) = assoc_entity element0, imports.%import_ref.5 [symbolic = %.3 (constants.%.6)]
  101. // CHECK:STDOUT:
  102. // CHECK:STDOUT: interface {
  103. // CHECK:STDOUT: !members:
  104. // CHECK:STDOUT: .Self = imports.%import_ref.2
  105. // CHECK:STDOUT: .Convert = imports.%import_ref.3
  106. // CHECK:STDOUT: witness = (imports.%import_ref.4)
  107. // CHECK:STDOUT: }
  108. // CHECK:STDOUT: }
  109. // CHECK:STDOUT:
  110. // CHECK:STDOUT: generic fn @Convert(constants.%Dest: type, constants.%Self.2: @ImplicitAs.%.1 (%.4)) {
  111. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  112. // CHECK:STDOUT: %.1: type = interface_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic = %.1 (constants.%.4)]
  113. // CHECK:STDOUT: %Self: %.4 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.3)]
  114. // CHECK:STDOUT:
  115. // CHECK:STDOUT: fn[%self: @Convert.%Self (%Self.3)]() -> @Convert.%Dest (%Dest);
  116. // CHECK:STDOUT: }
  117. // CHECK:STDOUT:
  118. // CHECK:STDOUT: specific @ImplicitAs(constants.%Dest) {
  119. // CHECK:STDOUT: %Dest => constants.%Dest
  120. // CHECK:STDOUT: }
  121. // CHECK:STDOUT:
  122. // CHECK:STDOUT: specific @ImplicitAs(@ImplicitAs.%Dest) {
  123. // CHECK:STDOUT: %Dest => constants.%Dest
  124. // CHECK:STDOUT: }
  125. // CHECK:STDOUT:
  126. // CHECK:STDOUT: specific @ImplicitAs(@Convert.%Dest) {
  127. // CHECK:STDOUT: %Dest => constants.%Dest
  128. // CHECK:STDOUT: }
  129. // CHECK:STDOUT:
  130. // CHECK:STDOUT: specific @Convert(constants.%Dest, constants.%Self.2) {
  131. // CHECK:STDOUT: %Dest => constants.%Dest
  132. // CHECK:STDOUT: %.1 => constants.%.4
  133. // CHECK:STDOUT: %Self => constants.%Self.2
  134. // CHECK:STDOUT: }
  135. // CHECK:STDOUT:
  136. // CHECK:STDOUT: specific @ImplicitAs(type) {
  137. // CHECK:STDOUT: %Dest => type
  138. // CHECK:STDOUT:
  139. // CHECK:STDOUT: !definition:
  140. // CHECK:STDOUT: %.1 => constants.%.7
  141. // CHECK:STDOUT: %Self => constants.%Self.3
  142. // CHECK:STDOUT: %Convert.type => constants.%Convert.type.2
  143. // CHECK:STDOUT: %Convert => constants.%Convert.2
  144. // CHECK:STDOUT: %.2 => constants.%.8
  145. // CHECK:STDOUT: %.3 => constants.%.9
  146. // CHECK:STDOUT: }
  147. // CHECK:STDOUT: