fail_generic_redeclaration.carbon 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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/fail_generic_redeclaration.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/fail_generic_redeclaration.carbon
  10. interface NotGeneric;
  11. // CHECK:STDERR: fail_generic_redeclaration.carbon:[[@LINE+7]]:1: ERROR: Redeclaration differs because of parameter list.
  12. // CHECK:STDERR: interface NotGeneric(T:! type) {}
  13. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  14. // CHECK:STDERR: fail_generic_redeclaration.carbon:[[@LINE-4]]:1: Previously declared without parameter list.
  15. // CHECK:STDERR: interface NotGeneric;
  16. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
  17. // CHECK:STDERR:
  18. interface NotGeneric(T:! type) {}
  19. interface Generic(T:! type);
  20. // CHECK:STDERR: fail_generic_redeclaration.carbon:[[@LINE+7]]:1: ERROR: Redeclaration differs because of missing parameter list.
  21. // CHECK:STDERR: interface Generic {}
  22. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~
  23. // CHECK:STDERR: fail_generic_redeclaration.carbon:[[@LINE-4]]:1: Previously declared with parameter list.
  24. // CHECK:STDERR: interface Generic(T:! type);
  25. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
  26. // CHECK:STDERR:
  27. interface Generic {}
  28. interface DifferentParams(T:! type);
  29. // CHECK:STDERR: fail_generic_redeclaration.carbon:[[@LINE+6]]:27: ERROR: Redeclaration differs at parameter 1.
  30. // CHECK:STDERR: interface DifferentParams(T:! ()) {}
  31. // CHECK:STDERR: ^
  32. // CHECK:STDERR: fail_generic_redeclaration.carbon:[[@LINE-4]]:27: Previous declaration's corresponding parameter here.
  33. // CHECK:STDERR: interface DifferentParams(T:! type);
  34. // CHECK:STDERR: ^
  35. interface DifferentParams(T:! ()) {}
  36. // CHECK:STDOUT: --- fail_generic_redeclaration.carbon
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: constants {
  39. // CHECK:STDOUT: %.1: type = interface_type @NotGeneric [template]
  40. // CHECK:STDOUT: %T.1: type = bind_symbolic_name T 0 [symbolic]
  41. // CHECK:STDOUT: %.type.1: type = generic_interface_type @.1 [template]
  42. // CHECK:STDOUT: %.2: type = tuple_type () [template]
  43. // CHECK:STDOUT: %.3: %.type.1 = struct_value () [template]
  44. // CHECK:STDOUT: %.4: type = interface_type @.1, (%T.1) [symbolic]
  45. // CHECK:STDOUT: %Self.1: %.4 = bind_symbolic_name Self 1 [symbolic]
  46. // CHECK:STDOUT: %Generic.type: type = generic_interface_type @Generic [template]
  47. // CHECK:STDOUT: %Generic: %Generic.type = struct_value () [template]
  48. // CHECK:STDOUT: %.5: type = interface_type @.2 [template]
  49. // CHECK:STDOUT: %Self.2: %.5 = bind_symbolic_name Self 0 [symbolic]
  50. // CHECK:STDOUT: %DifferentParams.type: type = generic_interface_type @DifferentParams [template]
  51. // CHECK:STDOUT: %DifferentParams: %DifferentParams.type = struct_value () [template]
  52. // CHECK:STDOUT: %T.2: %.2 = bind_symbolic_name T 0 [symbolic]
  53. // CHECK:STDOUT: %.type.2: type = generic_interface_type @.3 [template]
  54. // CHECK:STDOUT: %.6: %.type.2 = struct_value () [template]
  55. // CHECK:STDOUT: %.7: type = interface_type @.3, (%T.2) [symbolic]
  56. // CHECK:STDOUT: %Self.3: %.7 = bind_symbolic_name Self 1 [symbolic]
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT:
  59. // CHECK:STDOUT: file {
  60. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  61. // CHECK:STDOUT: .NotGeneric = %NotGeneric.decl
  62. // CHECK:STDOUT: .Generic = %Generic.decl
  63. // CHECK:STDOUT: .DifferentParams = %DifferentParams.decl
  64. // CHECK:STDOUT: }
  65. // CHECK:STDOUT: %NotGeneric.decl: type = interface_decl @NotGeneric [template = constants.%.1] {}
  66. // CHECK:STDOUT: %.decl.loc19: %.type.1 = interface_decl @.1 [template = constants.%.3] {
  67. // CHECK:STDOUT: %T.loc19_22.1: type = param T
  68. // CHECK:STDOUT: %T.loc19_22.2: type = bind_symbolic_name T 0, %T.loc19_22.1 [symbolic = constants.%T.1]
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT: %Generic.decl: %Generic.type = interface_decl @Generic [template = constants.%Generic] {
  71. // CHECK:STDOUT: %T.loc21_19.1: type = param T
  72. // CHECK:STDOUT: %T.loc21_19.2: type = bind_symbolic_name T 0, %T.loc21_19.1 [symbolic = constants.%T.1]
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT: %.decl.loc29: type = interface_decl @.2 [template = constants.%.5] {}
  75. // CHECK:STDOUT: %DifferentParams.decl: %DifferentParams.type = interface_decl @DifferentParams [template = constants.%DifferentParams] {
  76. // CHECK:STDOUT: %T.loc31_27.1: type = param T
  77. // CHECK:STDOUT: %T.loc31_27.2: type = bind_symbolic_name T 0, %T.loc31_27.1 [symbolic = constants.%T.1]
  78. // CHECK:STDOUT: }
  79. // CHECK:STDOUT: %.decl.loc38: %.type.2 = interface_decl @.3 [template = constants.%.6] {
  80. // CHECK:STDOUT: %.loc38_32.1: %.2 = tuple_literal ()
  81. // CHECK:STDOUT: %.loc38_32.2: type = converted %.loc38_32.1, constants.%.2 [template = constants.%.2]
  82. // CHECK:STDOUT: %T.loc38_27.1: %.2 = param T
  83. // CHECK:STDOUT: %T.loc38_27.2: %.2 = bind_symbolic_name T 0, %T.loc38_27.1 [symbolic = constants.%T.2]
  84. // CHECK:STDOUT: }
  85. // CHECK:STDOUT: }
  86. // CHECK:STDOUT:
  87. // CHECK:STDOUT: interface @NotGeneric;
  88. // CHECK:STDOUT:
  89. // CHECK:STDOUT: interface @.1
  90. // CHECK:STDOUT: generic [file.%T.loc19_22.2: type] {
  91. // CHECK:STDOUT: %Self: %.4 = bind_symbolic_name Self 1 [symbolic = constants.%Self.1]
  92. // CHECK:STDOUT:
  93. // CHECK:STDOUT: !members:
  94. // CHECK:STDOUT: .Self = %Self
  95. // CHECK:STDOUT: witness = ()
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT:
  98. // CHECK:STDOUT: interface @Generic
  99. // CHECK:STDOUT: generic [file.%T.loc21_19.2: type];
  100. // CHECK:STDOUT:
  101. // CHECK:STDOUT: interface @.2 {
  102. // CHECK:STDOUT: %Self: %.5 = bind_symbolic_name Self 0 [symbolic = constants.%Self.2]
  103. // CHECK:STDOUT:
  104. // CHECK:STDOUT: !members:
  105. // CHECK:STDOUT: .Self = %Self
  106. // CHECK:STDOUT: witness = ()
  107. // CHECK:STDOUT: }
  108. // CHECK:STDOUT:
  109. // CHECK:STDOUT: interface @DifferentParams
  110. // CHECK:STDOUT: generic [file.%T.loc31_27.2: type];
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: interface @.3
  113. // CHECK:STDOUT: generic [file.%T.loc38_27.2: %.2] {
  114. // CHECK:STDOUT: %Self: %.7 = bind_symbolic_name Self 1 [symbolic = constants.%Self.3]
  115. // CHECK:STDOUT:
  116. // CHECK:STDOUT: !members:
  117. // CHECK:STDOUT: .Self = %Self
  118. // CHECK:STDOUT: witness = ()
  119. // CHECK:STDOUT: }
  120. // CHECK:STDOUT: