blob: cd6f3b88a9cc74dd70e7a0586c387608fdf7c946 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 6302956
* @summary Illegal cast allowed Properties -> Map<String, String>
* @compile/fail/ref=T6302956.out -XDrawDiagnostics T6302956.java
*/
import java.util.Map;
public class T6302956 {
Object test() {
return (Map<String, String>)System.getProperties();
}
}