blob: 641a37fbabc710e5ee6743d91d19bd2a193698f0 [file] [log] [blame]
package call_out;
import java.util.List;
public class TestParenthesis {
Object list;
public void main() {
Object element= /*]*/((List)list)/*[*/.get(0);
}
public List getList() {
return (List)list;
}
}