summaryrefslogtreecommitdiff
path: root/test/ruby/namespace/returns_proc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/namespace/returns_proc.rb')
-rw-r--r--test/ruby/namespace/returns_proc.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/ruby/namespace/returns_proc.rb b/test/ruby/namespace/returns_proc.rb
deleted file mode 100644
index bb816e5024..0000000000
--- a/test/ruby/namespace/returns_proc.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-module Foo
- def self.foo
- "fooooo"
- end
-
- def self.callee
- lambda do
- Foo.foo
- end
- end
-end
-