class X { void test(Object obj) { if (obj instanceof String s && s.length() > 5) { System.out.println("found"); } } }