xref: /Universal-ctags/Units/parser-ruby.r/ruby-scope-after-anonymous-class.d/input.rb (revision 567d175dea18e1e600f912f55c5234505be321c5)
1class C
2  class << self
3    def foo() end
4  end
5
6  def bar(); end
7end
8
9puts C.foo
10puts C.new.bar
11