diff options
author | aycabta <[email protected]> | 2021-12-04 18:05:37 +0900 |
---|---|---|
committer | git <[email protected]> | 2021-12-09 18:16:05 +0900 |
commit | 2e50989ad39a1085e04a901d072e7a2a77d1dc8f (patch) | |
tree | 7c901a9bb9001fd327f173b8753cb370a44b3c71 /test/rdoc/xref_data.rb | |
parent | fa806cf233938af64ce928a37d2641dd762da87a (diff) |
[ruby/rdoc] Resolve class and method of the same name correctly
https://github.com/ruby/rdoc/commit/1e16284fe5
Diffstat (limited to 'test/rdoc/xref_data.rb')
-rw-r--r-- | test/rdoc/xref_data.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/rdoc/xref_data.rb b/test/rdoc/xref_data.rb index aa9faaecd9..de76a90602 100644 --- a/test/rdoc/xref_data.rb +++ b/test/rdoc/xref_data.rb @@ -115,6 +115,23 @@ class C9 end end +class C10 + class C11 + end + + def C11 + end +end + +def C10 +end + +class C11 +end + +def C11 +end + module M1 def m end |