报告超类子句中使用的模块。 超类子句只能引用类。

可以通过快速修复移除无效的超类子句。

示例:

# 'Kernel' 模块用作超类
class Example < Kernel
end

在应用快速修复后:

class Example
end