summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/fixtures/kernel.rb
blob: f5b95e0fead1dc28d1021c34fc782bbbc98933bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class CApiKernelSpecs
  class ClassWithPublicMethod
    def public_method(*, **)
      0
    end
  end

  class ClassWithPrivateMethod
    private def private_method(*, **)
      0
    end
  end

  class ClassWithProtectedMethod
    protected def protected_method(*, **)
      0
    end
  end
end