mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
11 lines
288 B
C++
11 lines
288 B
C++
#include <cxxtest/Flags.h>
|
|
|
|
#ifndef _CXXTEST_PARTIAL_TEMPLATE_SPECIALIZATION
|
|
template<class T> class X {} x;
|
|
template<class T, class U> class Pair {} p;
|
|
template<class T, class U> class X< Pair<T, U> > {} xp;
|
|
|
|
int main() { return 0; }
|
|
#endif // !_CXXTEST_PARTIAL_TEMPLATE_SPECIALIZATION
|
|
|