1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Bug 407579 - False ambiguity in template function resolution.

This commit is contained in:
Sergey Prigogin 2013-05-08 20:31:36 -07:00
parent e7282ec04e
commit 1ddcf867ab

View file

@ -5187,8 +5187,9 @@ public class AST2TemplateTests extends AST2TestBase {
// const char c[] = "";
// int x = sizeof(f(c));
// int d[] = { 0 };
// const int d[] = { 0 };
// int y = sizeof(f(d));
public void testOverloadResolution() throws Exception {
public void testFunctionOverloadResolution() throws Exception {
parseAndCheckBindings();
}