initial check in

This commit is contained in:
2012-12-06 21:43:03 +04:00
commit 4bc273824d
179 changed files with 29415 additions and 0 deletions

19
test_static_double.h Normal file
View File

@@ -0,0 +1,19 @@
#include <stdio.h>
template < class C>
class A
{
public:
static double _st_double;
static double init_fun()
{
puts( __FILE__ );
return 8.;
}
};
template <class C> double A<C>::_st_double = A<C>::init_fun();
int main2();