Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/STLFailedTests.java')
-rw-r--r--core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/STLFailedTests.java50
1 files changed, 0 insertions, 50 deletions
diff --git a/core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/STLFailedTests.java b/core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/STLFailedTests.java
deleted file mode 100644
index fcca66c94f5..00000000000
--- a/core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/STLFailedTests.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2002,2003 Rational Software Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * IBM Rational Software - Initial API and implementation
-***********************************************************************/
-package org.eclipse.cdt.core.parser.failedTests;
-import java.io.StringWriter;
-import java.io.Writer;
-
-import org.eclipse.cdt.core.parser.ast.IASTCompilationUnit;
-import org.eclipse.cdt.core.parser.ast.IASTTemplateDeclaration;
-import org.eclipse.cdt.core.parser.ast.IASTVariable;
-import org.eclipse.cdt.core.parser.tests.BaseASTTest;
-
-/**
- * @author hamer
- */
-public class STLFailedTests extends BaseASTTest {
-
- public STLFailedTests(String name) {
- super(name);
- }
-
- public void testBug36805() throws Exception{
- Writer code = new StringWriter();
- code.write("__STL_BEGIN_NAMESPACE\n");
- code.write("template <class _CharT> class char_traits\n");
- code.write(": public __char_traits_base<_CharT, _CharT>\n");
- code.write("{};\n");
- assertCodeFailsParse(code.toString());
- }
-
- public void testBug40714() throws Exception{
- // templates of variables
- Writer code = new StringWriter();
- code.write("template <bool __threads, int __inst>\n");
- code.write("char* default_alloc_template<__threads, __inst>::_S_start_free = 0;\n");
- IASTCompilationUnit cu = parse(code.toString());
- IASTTemplateDeclaration templateDecl = (IASTTemplateDeclaration) cu.getDeclarations().next();
- // should not get this exception
- IASTVariable v = (IASTVariable) templateDecl.getOwnedDeclaration();
- assertEquals( v, null );
- }
-
-}

Back to the top