alias.h 112 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 #ifndef ALIAS_H #define ALIAS_H struct alias_outer { template <typename = int> using alias = int; }; #endif