Does "instanceof Void" always return false?

Viewed 6508

Can this method return true somehow?

public static <T> boolean isVoid(T t)
{
    return t instanceof Void;
}
4 Answers
Related