mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
197 B
Java
9 lines
197 B
Java
package impossible_cast;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class A {
|
|
{ String[] s = (String[])new Object[] { "Hello, world!" }; }
|
|
{ Serializable[] ss = (Object[][])new Serializable[] {}; }
|
|
}
|