The following code produces two quickfix options although only one should be shown.
Note that one disappears after contract A is removed from the code.
This might be connected to #282 .
pragma solidity ^0.5.4;
contract A {
}
contract Existing {
function Existing(address _t) public {
}
}