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/FullParseFailedTests.java')
-rw-r--r--core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/FullParseFailedTests.java66
1 files changed, 0 insertions, 66 deletions
diff --git a/core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/FullParseFailedTests.java b/core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/FullParseFailedTests.java
deleted file mode 100644
index c56bddfe1a5..00000000000
--- a/core/org.eclipse.cdt.core.tests/failures/org/eclipse/cdt/core/parser/failedTests/FullParseFailedTests.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003 IBM 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 Corp. - Rational Software - initial implementation
- ******************************************************************************/
-/*
- * Created on Jul 28, 2003
- */
-package org.eclipse.cdt.core.parser.failedTests;
-
-import java.util.Iterator;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-import org.eclipse.cdt.core.parser.ast.IASTVariable;
-import org.eclipse.cdt.core.parser.tests.CompleteParseASTTest;
-
-/**
- * @author aniefer
- *
- * To change the template for this generated type comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public class FullParseFailedTests extends CompleteParseASTTest {
-
- /**
- * @param a
- */
- public FullParseFailedTests(String name) {
- super(name);
- }
-
- public static Test suite() {
- TestSuite suite = new TestSuite(FullParseFailedTests.class.getName());
- return suite;
- }
-
- public void testBug41520() throws Exception
- {
- Iterator i = parse( "int x = 666; int y ( x );").getDeclarations();
- IASTVariable variableX = (IASTVariable)i.next();
- try
- {
- IASTVariable variableY = (IASTVariable)i.next();
- failedAsExpected();
- }catch( ClassCastException cce )
- {
- //this is bad
- }
- }
-
- /**
- *
- */
- private void failedAsExpected()
- {
- }
-
-
-} \ No newline at end of file

Back to the top