| 62 | |
| 63 | |
| 64 | class A {public: |
| 65 | /* An uncollectable class. */ |
| 66 | |
| 67 | A( int iArg ): i( iArg ) {} |
| 68 | void Test( int iArg ) { |
| 69 | my_assert( i == iArg );} |
| 70 | int i;}; |
| 71 | |
| 72 | |
| 73 | class B: public gc, public A {public: |
nothing calls this directly
no outgoing calls
no test coverage detected