Roll src/third_party/WebKit d10c917:a1123a1 (svn 198729:198730)
[chromium-blink-merge.git] / tools / clang / blink_gc_plugin / tests / left_most_gc_base.txt
blobe2d04186773d828a5a180fc250f60d92a983b6a9
1 In 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.
3 class Right : public A, public B, public GarbageCollected<Right> { };  // Error
5 ./left_most_gc_base.h:18:1: warning: [blink-gc] Class 'DerivedRight' must derive its GC base in the left-most position.
6 class DerivedRight : public Right, public Left { };  // Error
8 ./left_most_gc_base.h:12:1: warning: [blink-gc] Left-most base class 'A' of derived class 'IllFormed' must be polymorphic.
9 class A { };
11 ./left_most_gc_base.h:26:1: warning: [blink-gc] Class 'IllFormed' must derive its GC base in the left-most position.
12 class IllFormed : public A, public C { }; // Error
14 4 warnings generated.