报告传递给泛型类型并且不是预期上限的子类型的类型实参。 类型实参必须是任意指定上限的子类型。
示例:
class Example[A < Numeric] end # 'String' 不是 'Numeric' 的子类型 type example = Example[String]