Removes a useless test that was accidentally added in revision 3191.

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@3257 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/dev/jjs/test/CompilerTest.java b/user/test/com/google/gwt/dev/jjs/test/CompilerTest.java
index c2646fa..74a017b 100644
--- a/user/test/com/google/gwt/dev/jjs/test/CompilerTest.java
+++ b/user/test/com/google/gwt/dev/jjs/test/CompilerTest.java
@@ -515,35 +515,6 @@
     assertTrue(b);
     assertEquals("null true", test);
   }
-  
-  public void testInliningOrder() {
-    final StringBuffer buf = new StringBuffer();
-    class Misc {
-      // TODO(spoon) rename all this
-      String effect1() {
-        if (FALSE) {
-          return effect1();
-        }
-        buf.append("effect1");
-        return "effect2";
-      }
-      void effect2() {
-        if (FALSE) {
-          effect2();
-        }
-        buf.append("effect2");
-      }
-      void useBoth(Object x, Object y) {
-        StringBuffer b = buf;
-        b.append(x);
-        b.append(y);
-      }
-    }
-   
-    Misc misc = new Misc();
-    misc.useBoth("blah", buf.toString());
-    assertEquals("blah", buf.toString());
-  }
 
   public void testJavaScriptReservedWords() {
     boolean delete = TRUE;