summaryrefslogtreecommitdiff
path: root/sample/struct.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/struct.rb')
-rw-r--r--sample/struct.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/sample/struct.rb b/sample/struct.rb
deleted file mode 100644
index 322764d02f..0000000000
--- a/sample/struct.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-#output:
-# struct test
-# 1
-
-foo = Struct.new("test", "a1"::1, "a2"::2)
-print(foo, "\n")
-bar = foo.clone
-print(bar.a1, "\n")