Re: [PATCH] PR c++/40942 - Failure of template specialization partial ordering
OK. Jason
[PATCH] PR c++/40942 - Failure of template specialization partial ordering
Hello, G++ compiles the example below without error: struct S { template S (T const *) //#0 { } template S (char const (&)[N]) //#1 { } }; int main() { S s1 ("test"); // #3 This should error out because the