blob: c31d7cff7cc92ea3c5595fccc7228793471dcaac [file] [log] [blame]
interface Inter {}
class Impl implements Inter {}
class TestGenericsInstanceof<I extends Inter>
{
I member;
{
boolean test = member instanceof Impl;
}
}