Reports usages of view bounds and suggests to replace them with implicit parameters.
View bounds are deprecated: SI-7629.
Example:
class Sample[A <% Int]
After the quick-fix is applied:
class Sample[A]()