summaryrefslogtreecommitdiff
path: root/spec/ruby/language/fixtures/class_with_class_variable.rb
blob: 0b07f16d3027a131a496db6479fd78662cbe1a9e (plain)
1
2
3
4
5
6
7
8
9
module StringSpecs
  class ClassWithClassVariable
    @@a = "xxx"

    def foo
      "#@@a"
    end
  end
end