module A
  class B
    @@somevar = "hello"
	@@somevar.value = "H"

    def method
      @@somevar = "don't document this"
    end
  end
end