blob: 63a894556ee5d5fe5a5d69ff227ef7ce607c180e [file] [log] [blame]
package com.siyeh.igtest.classlayout;
public class NonPrivateMethodReturnsPrivateClassInspection{
public PrivateInner foo()
{
return null;
}
private class PrivateInner
{
}
}