left_most_gc_base.txt revision c5cede9ae108bb15f6b7a8aea21c7e1fefa2834c
1In file included from left_most_gc_base.cpp:5:
2./left_most_gc_base.h:15:1: warning: [blink-gc] Class 'Right' must derive its GC base in the left-most position.
3class Right : public A, public B, public GarbageCollected<Right> { };  // Error
4^
5./left_most_gc_base.h:18:1: warning: [blink-gc] Class 'DerivedRight' must derive its GC base in the left-most position.
6class DerivedRight : public Right, public Left { };  // Error
7^
82 warnings generated.
9