From 3728db47b41c44876d81957a312c676d23c1a869 Mon Sep 17 00:00:00 2001 From: John Camelon Date: Tue, 12 Jul 2005 19:41:52 +0000 Subject: [PATCH] Check in commented out test. --- .../org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java index 5a632c1ee59..bca87a34c4d 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java @@ -4975,5 +4975,9 @@ public class AST2CPPTests extends AST2BaseTest { public void testBug80171() throws Exception { parseAndCheckBindings( "static var;"); //$NON-NLS-1$ } + +// public void testBug78800() throws Exception { +// parseAndCheckBindings( "class Matrix { public: Matrix & operator *(Matrix &); }; Matrix transform = rotate * translate;" ); //$NON-NLS-1$ +// } }