6 lines
93 B
C++
6 lines
93 B
C++
export module bar;
|
|
import Templ;
|
|
export template<class T>
|
|
int bar() {
|
|
return G<T>()();
|
|
}
|