Error extraño con una sobrecarga de operador con plantilla

Cuando compilo el siguiente fragmento de código, recibo un error del compilador con clang, pero no con g ++ / MSVC:

#include <string>

template<typename T> struct Const { 
    explicit Const(T val) : value(val) {}
    T value;
};

template<typename T> struct Var {
    explicit Var(const std::string &n) : name(n) {}

    std::string name;
};

template<typename L, typename R> struct Greater {
    Greater(L lhs, R rhs) : left(lhs), right(rhs) {}

    L left;
    R right;
};

template<typename L>
Greater<L, Const<int> > operator > (L lhs, int rhs) { 
    return Greater<L, Const<int> >(lhs, Const<int>(rhs));
}

template<typename R>
Greater<Const<int>, R> operator > (int lhs, R rhs) { 
    return Greater<Const<int>, R>(Const<int>(lhs), rhs);
}

Var<double> d("d");

int main() {
     d > 10;
     return 0;
}

El error reportado es el siguiente:

error: overloaded 'operator>' must have at least one parameter of
      class or enumeration type
Greater<Const<int>, R> operator > (int lhs, R rhs) { 
                       ^
./val.h:31:24: note: in instantiation of function template specialization
      'operator><int>' requested here
Greater<Const<int>, R> operator > (int lhs, R rhs) { 
                       ^
1 error generated.

que se trata de la función de operador que no se utiliza. Si, en cambio, escribo 10> d en lugar de d> 10, obtengo el mismo error sobre la función del otro operador>. Lo anterior compila bien bajo gcc 4.4.6 y VS2012. Cual es mi error

Gracias.

Respuestas a la pregunta(3)

Su respuesta a la pregunta