jdk-24/test/langtools/tools/javac/cast/6302956/T6302956.java

15 lines
330 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 6302956
* @summary Illegal cast allowed Properties -> Map<String, String>
* @compile/fail/ref=T6302956.out -XDrawDiagnostics T6302956.java
2007-12-01 00:00:00 +00:00
*/
import java.util.Map;
public class T6302956 {
Object test() {
return (Map<String, String>)System.getProperties();
}
}