blob: 533a46565e16858c255521ab0e197ab8b5e25b2c [file] [log] [blame]
package com.siyeh.igtest.bugs;
public class MisspelledComparetoInspection
{
private int m_bar;
public MisspelledComparetoInspection()
{
m_bar = 0;
}
public int compareto(int foo)
{
return m_bar;
}
}