jdk/test/java/util/Collections/EmptyIterator.java
changeset 32991 b27c76b82713
parent 28060 4019fb4fb1fb
--- a/jdk/test/java/util/Collections/EmptyIterator.java	Tue Oct 13 16:35:22 2015 -0700
+++ b/jdk/test/java/util/Collections/EmptyIterator.java	Tue Oct 13 16:45:35 2015 -0700
@@ -29,13 +29,14 @@
 
 import static java.util.Collections.*;
 import java.util.*;
+import java.util.concurrent.SynchronousQueue;
 
 public class EmptyIterator {
 
     void test(String[] args) throws Throwable {
         testEmptyCollection(emptyList());
         testEmptyCollection(emptySet());
-
+        testEmptyCollection(new SynchronousQueue<Object>());
         testEmptyMap(emptyMap());
 
         Hashtable<?,?> emptyTable = new Hashtable<>();