Community
Participate
Working Groups
import static extension java.lang.Double.* import static extension java.lang.Integer.* both allow to use valueOf(String) so we should hide both from the scope similar to what we do with ambiguous wildcard imports in the ImportScope. See discussion in bug 340459
Ambiguous extension imports will be flagged if they are used, e.g an expression ''.valueOf will raise this error: Ambiguous feature call. The extension methods valueOf(String) in Double and valueOf(String) in Integer both match.
Merged into master.
Requested via bug 522520. -M.