diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/py-prettyprint.c')
-rw-r--r-- | gdb/testsuite/gdb.python/py-prettyprint.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-prettyprint.c b/gdb/testsuite/gdb.python/py-prettyprint.c index 5f98433..1d88b4e 100644 --- a/gdb/testsuite/gdb.python/py-prettyprint.c +++ b/gdb/testsuite/gdb.python/py-prettyprint.c @@ -44,6 +44,10 @@ struct lazystring { const char *lazy_str; }; +struct hint_error { + int x; +}; + #ifdef __cplusplus struct S : public s { int zs; @@ -215,6 +219,7 @@ main () nostring_type nstype, nstype2; struct ns ns, ns2; struct lazystring estring, estring2; + struct hint_error hint_error; nstype.elements = narray; nstype.len = 0; |