| 71 | |
| 72 | |
| 73 | class B: public gc, public A {public: |
| 74 | /* A collectable class. */ |
| 75 | |
| 76 | B( int j ): A( j ) {} |
| 77 | ~B() { |
| 78 | my_assert( deleting );} |
| 79 | static void Deleting( int on ) { |
| 80 | deleting = on;} |
| 81 | static int deleting;}; |
| 82 | |
| 83 | int B::deleting = 0; |
| 84 |
nothing calls this directly
no outgoing calls
no test coverage detected