Remove error test that does warn

This commit is contained in:
William S Fulton 2017-01-26 20:34:56 +00:00
commit 1efcdd8c56
2 changed files with 0 additions and 13 deletions

View file

@ -1,13 +0,0 @@
%module cpp_using_type_aliasing
namespace Space {
template<typename T> struct Okay {
};
struct User {
protected:
using OkayInt = Okay<int>;
};
struct Derived : User {
Okay<OkayInt> ff();
};
};