diff options
Diffstat (limited to 'contrib/reghunt/examples/29906a.cc')
-rw-r--r-- | contrib/reghunt/examples/29906a.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/reghunt/examples/29906a.cc b/contrib/reghunt/examples/29906a.cc new file mode 100644 index 000000000..ef644eee5 --- /dev/null +++ b/contrib/reghunt/examples/29906a.cc @@ -0,0 +1,7 @@ +struct A{ + typedef int T; + virtual ~A(); +}; +struct B:public A{ + using A::T; +}; |