language: C++11 (gcc-4.7.2)
date: 716 days 5 hours ago
link:
visibility: private
1
2
3
4
5
6
7
8
9
10
11
template<class T>
struct other_traits;
 
template<class T>
struct some_traits{
    typedef decltype(&T::operator()) Fty;
    typedef typename other_traits<Fty>::type type;
};
 
int main(){
}