class Steep::Diagnostic::Ruby::FalseAssertion

def header_line

def header_line
  "Assertion cannot hold: no relationship between inferred type (`#{node_type.to_s}`) and asserted type (`#{assertion_type.to_s}`)"
end

def initialize(node:, assertion_type:, node_type:)

def initialize(node:, assertion_type:, node_type:)
  super(node: node)
  @assertion_type = assertion_type
  @node_type = node_type
end