fail_todo_generic_method.carbon 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. class Class(T:! type) {
  7. var a: T;
  8. fn F[self: Self](n: T);
  9. }
  10. // CHECK:STDERR: fail_todo_generic_method.carbon:[[@LINE+10]]:1: ERROR: Duplicate name being declared in the same scope.
  11. // CHECK:STDERR: fn Class(T:! type).F[self: Self](n: T) {}
  12. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  13. // CHECK:STDERR: fail_todo_generic_method.carbon:[[@LINE-8]]:1: Name is previously declared here.
  14. // CHECK:STDERR: class Class(T:! type) {
  15. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~
  16. // CHECK:STDERR:
  17. // CHECK:STDERR: fail_todo_generic_method.carbon:[[@LINE+3]]:19: ERROR: `fn` declarations must either end with a `;` or have a `{ ... }` block for a definition.
  18. // CHECK:STDERR: fn Class(T:! type).F[self: Self](n: T) {}
  19. // CHECK:STDERR: ^
  20. fn Class(T:! type).F[self: Self](n: T) {}
  21. // CHECK:STDOUT: --- fail_todo_generic_method.carbon
  22. // CHECK:STDOUT:
  23. // CHECK:STDOUT: constants {
  24. // CHECK:STDOUT: %T: type = bind_symbolic_name T 0 [symbolic]
  25. // CHECK:STDOUT: %Class: type = class_type @Class [template]
  26. // CHECK:STDOUT: %.1: type = unbound_element_type Class, T [symbolic]
  27. // CHECK:STDOUT: %F: type = fn_type @F [template]
  28. // CHECK:STDOUT: %.2: type = tuple_type () [template]
  29. // CHECK:STDOUT: %struct.1: F = struct_value () [template]
  30. // CHECK:STDOUT: %.3: type = struct_type {.a: T} [symbolic]
  31. // CHECK:STDOUT: %.4: type = fn_type @.1 [template]
  32. // CHECK:STDOUT: %struct.2: <invalid> = struct_value () [template]
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT:
  35. // CHECK:STDOUT: file {
  36. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  37. // CHECK:STDOUT: .Core = %Core
  38. // CHECK:STDOUT: .Class = %Class.decl
  39. // CHECK:STDOUT: }
  40. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  41. // CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {
  42. // CHECK:STDOUT: %T.loc7_13.1: type = param T
  43. // CHECK:STDOUT: %T.loc7_13.2: type = bind_symbolic_name T 0, %T.loc7_13.1 [symbolic = constants.%T]
  44. // CHECK:STDOUT: }
  45. // CHECK:STDOUT: %.decl: <invalid> = fn_decl @.1 [template = constants.%struct.2] {
  46. // CHECK:STDOUT: %T.loc22_10.1: type = param T
  47. // CHECK:STDOUT: @.1.%T: type = bind_symbolic_name T 0, %T.loc22_10.1 [symbolic = constants.%T]
  48. // CHECK:STDOUT: }
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT:
  51. // CHECK:STDOUT: class @Class {
  52. // CHECK:STDOUT: %T.ref.loc8: type = name_ref T, file.%T.loc7_13.2 [symbolic = constants.%T]
  53. // CHECK:STDOUT: %.loc8: <unbound element of class Class> = field_decl a, element0 [template]
  54. // CHECK:STDOUT: %F.decl: F = fn_decl @F [template = constants.%struct.1] {
  55. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Class [template = constants.%Class]
  56. // CHECK:STDOUT: %self.loc9_8.1: Class = param self
  57. // CHECK:STDOUT: %self.loc9_8.2: Class = bind_name self, %self.loc9_8.1
  58. // CHECK:STDOUT: %T.ref.loc9: type = name_ref T, file.%T.loc7_13.2 [symbolic = constants.%T]
  59. // CHECK:STDOUT: %n.loc9_20.1: T = param n
  60. // CHECK:STDOUT: %n.loc9_20.2: T = bind_name n, %n.loc9_20.1
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: !members:
  64. // CHECK:STDOUT: .Self = constants.%Class
  65. // CHECK:STDOUT: .a = %.loc8
  66. // CHECK:STDOUT: .F = %F.decl
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: fn @F[@Class.%self.loc9_8.2: Class](@Class.%n.loc9_20.2: T);
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: fn @.1(%T: type);
  72. // CHECK:STDOUT: