michael@0: #include "gdb-tests.h" michael@0: michael@0: typedef int A; michael@0: typedef A B; michael@0: michael@0: class C { }; michael@0: class D { }; michael@0: typedef C C_; michael@0: typedef D D_; michael@0: class E: C, D { }; michael@0: typedef E E_; michael@0: class F: C_, D_ { }; michael@0: class G { }; michael@0: class H: F, G { }; michael@0: michael@0: FRAGMENT(prettyprinters, implemented_types) { michael@0: int i; michael@0: A a; michael@0: B b; michael@0: C c; michael@0: C_ c_; michael@0: E e; michael@0: E_ e_; michael@0: F f; michael@0: H h; michael@0: michael@0: breakpoint(); michael@0: michael@0: (void) i; michael@0: (void) a; michael@0: (void) b; michael@0: (void) c; michael@0: (void) c_; michael@0: (void) e; michael@0: (void) e_; michael@0: (void) f; michael@0: (void) h; michael@0: }