Files
codeql/cpp/ql/test/library-tests/templates/instantiations_functions/header.h
2018-08-02 17:53:23 +01:00

14 lines
200 B
C++

template <typename BaseT>
struct actor1 : public composite<int> {
actor1();
template <typename A>
inline void
funx(A& a_) {
int i;
composite<int>::eval(i);
}
};