1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Removed external dependencies.

This commit is contained in:
Sergey Prigogin 2008-03-16 04:05:53 +00:00
parent 66ce99e5a9
commit c09235c6d1

View file

@ -137,29 +137,20 @@ public class IndexCPPBindingResolutionBugs extends IndexBindingResolutionTestBas
// class Temp {
// };
// #include <stdio.h>
// #include <stdlib.h>
// #include "test.h"
// int main(void) {
// puts("Hello World!!!");
//
// Temp testFile;
// testTemplate(testFile);
//
// return EXIT_SUCCESS;
// void main(void) {
// Temp testFile;
// testTemplate(testFile);
// }
public void testBug207320() {
IBinding b0= getBindingFromASTName("testTemplate(", 12);
assertInstance(b0, ICPPFunction.class);
assertInstance(b0, ICPPTemplateInstance.class);
}
// class testdef{
//
// public:
// void testagain();
//
// };
//
// typedef void TAny;