1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 17:55:39 +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 { // class Temp {
// }; // };
// #include <stdio.h> // void main(void) {
// #include <stdlib.h> // Temp testFile;
// #include "test.h" // testTemplate(testFile);
// int main(void) {
// puts("Hello World!!!");
//
// Temp testFile;
// testTemplate(testFile);
//
// return EXIT_SUCCESS;
// } // }
public void testBug207320() { public void testBug207320() {
IBinding b0= getBindingFromASTName("testTemplate(", 12); IBinding b0= getBindingFromASTName("testTemplate(", 12);
assertInstance(b0, ICPPFunction.class); assertInstance(b0, ICPPFunction.class);
assertInstance(b0, ICPPTemplateInstance.class); assertInstance(b0, ICPPTemplateInstance.class);
} }
// class testdef{ // class testdef{
// //
// public: // public:
// void testagain(); // void testagain();
//
// }; // };
// //
// typedef void TAny; // typedef void TAny;