19 lines
207 B
C++
19 lines
207 B
C++
#include <iostream>
|
|
|
|
|
|
#include "test_static_double.h"
|
|
|
|
|
|
int main ( void )
|
|
{
|
|
A<int> a;
|
|
A<double> b;
|
|
|
|
std::cout << a._st_double << std::endl;
|
|
std::cout << b._st_double << std::endl;
|
|
|
|
|
|
return main2();
|
|
}
|
|
|