summaryrefslogtreecommitdiffstats
path: root/testing/061_bug_705503.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'testing/061_bug_705503.tcl')
-rw-r--r--testing/061_bug_705503.tcl19
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/061_bug_705503.tcl b/testing/061_bug_705503.tcl
deleted file mode 100644
index ce25d6e..0000000
--- a/testing/061_bug_705503.tcl
+++ /dev/null
@@ -1,19 +0,0 @@
-#// objective: test for bug 705503 - TCL: Documentation of oo::define is not working
-#// check: class_test.xml
-#// config: EXTRACT_ALL = yes
-
-# taken from
-# https://bugzilla.gnome.org/show_bug.cgi?id=705503
-
-## @class Test
-# @brief Testclass
-oo::class create Test {
- ## @brief Test method 1.
- method testmethod_one args {}
-}
-
-## @brief Construction of class
-oo::define Test constructor args {}
-
-## @brief Test method 2
-oo::define Test method testmethod_two args {}