Angesichts der folgenden Vorlagenstruktur: template<typename T> struct Foo { Foo(T&&) {} }; Dies kompiliert und Twird abgeleitet als int: auto f = Foo(2); Dies wird jedoch nicht kompiliert: https://godbolt.org/z/hAA9TE int x = 2; auto f = Foo(x); /* <source>:12:15: error:...