Files
test/cpp/test_static_double2.cpp

16 lines
199 B
C++

#include <iostream>
#include "test_static_double.h"
int main2 ( void )
{
A<int> a;
A<double> b;
std::cout << a._st_double << std::endl;
std::cout << b._st_double << std::endl;
return 0;
}