blob: 18ad6314f65bde876fd7159498bc71a557e67f84 [file] [log] [blame]
package test0031;
import java.util.*;
public class Test {
public static void main(String[] args) {
Object o = "Hello";
String s = (String) o;
}
}