mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-14 08:18:43 +00:00
7 lines
171 B
Java
7 lines
171 B
Java
// version 8:
|
|
import java.util.*;
|
|
public class CastWithIntersection {
|
|
public void test(List<?> list) {
|
|
RandomAccess r = (RandomAccess & java.io.Serializable) list;
|
|
}
|
|
} |