mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
12 lines
405 B
Java
12 lines
405 B
Java
import java.io.Serializable;
|
|
|
|
public class FooBar1 {
|
|
{
|
|
Object x = null;
|
|
Object y = (CharSequence & Serializable) x;
|
|
Object y2 = (CharSequence & Integer) x;
|
|
Object y3 = (Integer & CharSequence) x;
|
|
<error descr="Incompatible types. Found: 'java.lang.CharSequence & java.io.Serializable', required: 'int'">int y1 = (CharSequence & Serializable) x;</error>
|
|
}
|
|
}
|