blob: df5b48e50c98018e562e31567fa392fa3c73cdc6 [file] [log] [blame]
package com.siyeh.igtest.confusing;
public class AssignmentToCatchParameterInspection
{
public AssignmentToCatchParameterInspection()
{
}
public void fooBar(int bar, int baz)
{
try {
} catch (Exception e) {
e = new Exception();
e.printStackTrace();
}
}
}