8 lines
103 B
C
8 lines
103 B
C
|
#ifndef FUNC_H
|
||
|
#define FUNC_H
|
||
|
struct func_outer {
|
||
|
template <typename = int>
|
||
|
void func();
|
||
|
};
|
||
|
#endif
|