mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
200 B
C++
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);
|
|
}
|
|
};
|
|
|