1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 09:45:39 +02:00

Cosmetics.

Change-Id: I3484969221546dc8d71995c71651bcad95df128a
This commit is contained in:
Sergey Prigogin 2017-03-10 14:23:21 -08:00
parent 1735a17c5e
commit f60d78b32d

View file

@ -5991,7 +5991,6 @@ public class AST2TemplateTests extends AST2TestBase {
parseAndCheckBindings();
}
// template<bool> struct S {
// static int m();
// };
@ -6652,17 +6651,17 @@ public class AST2TemplateTests extends AST2TestBase {
assertSameType(waldo.getType(), CommonCPPTypes.int_);
}
//struct A {
// int m(int i) const;
// void m() const;
//};
// struct A {
// int m(int i) const;
// void m() const;
// };
//
//template<typename T> struct B {
// typedef int (T::*Method)(int) const;
// B(Method p) {}
//};
// template<typename T> struct B {
// typedef int (T::*Method)(int) const;
// B(Method p) {}
// };
//
//B<const A> a(&A::m);
// B<const A> a(&A::m);
public void testConstInTypeParameter_377223() throws Exception {
parseAndCheckBindings();
}