diff options
Diffstat (limited to 'libs/python/pyste/tests/inherit.pyste')
-rw-r--r-- | libs/python/pyste/tests/inherit.pyste | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/python/pyste/tests/inherit.pyste b/libs/python/pyste/tests/inherit.pyste new file mode 100644 index 000000000..0dc029989 --- /dev/null +++ b/libs/python/pyste/tests/inherit.pyste @@ -0,0 +1,8 @@ +A = Template('inherit::A', 'inherit.h') +A_int = A('int', 'A_int') + +Class('inherit::B', 'inherit.h') +Class('inherit::D', 'inherit.h') +E = Class('inherit::E', 'inherit.h') +exclude(E.s) +exclude(E.ab) |