I have the following code:
class Foo;
class Bar;
class Bar {
public:
Bar() {
}
Bar(Foo &foo) {
}
};
class Foo {
public:
Foo() {
}
Foo(Foo &foo) {
}
Foo(const Bar &bar) {
}
};
Bar operator >> (const Bar &left, const Bar &right) { return Bar(); }
Foo a;
Foo b;
Foo c = a >> b;
In Visual Studio 10, the above code compiles fine: the compiler recognizes that Bar can be instantiated from Foo&, and therefore it invokes the appropriate operator >>, which then returns a Bar instance, and the constructor Foo(const Bar &) is appropriately invoked.
However, GCC 4.5 does not compile the above code. It outputs the following error:
error: no matching function for call to 'Foo::Foo(Foo)'
note: candidates are: Foo::Foo(const Bar&)
note: Foo::Foo(Foo&)
note: Foo::Foo()
Why does the above happen and which compiler is correct, according to the language standard?
EDIT:
Why does C++ create a temporary Foo object as a result of c = a >> b, since Foo(const Bar &) exists?