summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/fixtures/kernel.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/optional/capi/fixtures/kernel.rb')
-rw-r--r--spec/ruby/optional/capi/fixtures/kernel.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/optional/capi/fixtures/kernel.rb b/spec/ruby/optional/capi/fixtures/kernel.rb
index f5b95e0fea..d3fc7c57e8 100644
--- a/spec/ruby/optional/capi/fixtures/kernel.rb
+++ b/spec/ruby/optional/capi/fixtures/kernel.rb
@@ -1,19 +1,19 @@
class CApiKernelSpecs
class ClassWithPublicMethod
def public_method(*, **)
- 0
+ :public
end
end
class ClassWithPrivateMethod
private def private_method(*, **)
- 0
+ :private
end
end
class ClassWithProtectedMethod
protected def protected_method(*, **)
- 0
+ :protected
end
end
end