Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why can't a class have a decltype in the inheritance list? For instance, I would expect the following code to make A<B> inherit from RType, but with G++ 4.6.1 (using -std=c++0x) it does not compile:

#include <type_traits>

template<typename T>
class A : public decltype(std::declval<T>().hello()) { };

class RType { };

class B {
public:
    RType hello() { return RType(); }
};

int main() {
    A<B> a;
}

It gives the following output:

test.cpp:6:18: error: expected class-name before 'decltype'
test.cpp:6:18: error: expected '{' before 'decltype'
test.cpp:6:54: error: expected unqualified-id before '{' token
test.cpp: In function 'int main()':
test.cpp:16:7: error: aggregate 'A<B> a' has incomplete type and cannot be defined

The use of declval is just to provide an instance where you needed to use decltype, but other uses of decltype also fail (that is, without declval).

share|improve this question
3  
Have you tried gcc 4.7, clang or any other compiler? gcc isn't fully C++11 compliant yet... – PlasmaHH Feb 20 '12 at 22:00
1  
@PlasmaHH I'm actually trying to compile clang now (for other reasons) but with MSVC++ 2010 it doesn't work. – Seth Carnegie Feb 20 '12 at 22:04

4 Answers

up vote 15 down vote accepted

It's allowed :

10.1 : "A list of base classes can be specified in a class definition using the notation:"

class-or-decltype:
nested-name-specifieropt class-name
decltype-specifier

so I guess your compiler has bug

share|improve this answer

It looks like a bug in GCC. Try 4.7.

share|improve this answer

A workaround:

template <typename T>
class ID
{
 public:
  typedef T type;
};

template<typename T>
class A : public ID<whatever>::type { };
share|improve this answer
Notice that I'm inheriting from the type that is the return type of a function. This doesn't/can't do the same thing. – Seth Carnegie Feb 20 '12 at 22:09
3  
@Seth : I think the implication was to try template<typename T> class A : public ID<decltype(std::declval<T>().hello())>::type { };. – ildjarn Feb 20 '12 at 22:14
@ildjarn you're probably right, didn't think far enough – Seth Carnegie Feb 20 '12 at 22:14
+1 for a Freudian class. – Kerrek SB Feb 20 '12 at 22:19
And instead of writing your own class you can use std::enable_if<true, decltype(...)>::type – Fozi Mar 26 '12 at 15:02
show 2 more comments

You might try something like

template<typename T>
class A : public result_of<T::hello()>

though it may be expecting a static member function for that syntax, and it would likely run into the same bug that prevents decltype from working.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.