aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/testcases/move-class/template/theheader.h
blob: 58f7a073722bfa292ee16b2520efc4edb4ab9d2f (plain)
1
2
3
4
5
6
7
enum SomeEnum { E };
template<typename T> class TheClass
{
    T defaultValue() const;
};

template<typename T> inline T TheClass<T>::defaultValue() const { return T(); }