Cannot use clone() method of LinkedList...That's strange
I got a very strange problem. I wrote the following statement:
....
Integer[] nums = generateRandomIntegerArray();
List<Integer> list =new LinkedList<Integer>(Arrays.asList(nums));
[b]
List<Integer> clone = list.clone();
[/b]
.....
I got an error statement: cannot find symbol-method clone().
When I use other methods it's fine, but I cannot use clone().
That's really strange. I've checked many times, clone() method does exist
in the LinkedList class.

