fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / src / dynpmc / foo2.pmc
blob8b2a2ed5e1dc2b1e552a6d827b5345a54fc68da8
1 /*
2  * $Id$
3  * Copyright (C) 2009, Parrot Foundation.
4  */
6 /*
7  * Sample Foo2 class used to verify dynamic loading and
8  * proper inheritance - for testing only
9  */
11 pmclass Foo2 dynpmc group foo_group provides scalar extends Foo auto_attrs {
13     VTABLE INTVAL get_integer() {
14         INTVAL i = SUPER();
15         return i + 1;
16     }
21  * Local variables:
22  *   c-file-style: "parrot"
23  * End:
24  * vim: expandtab shiftwidth=4:
25  */