class Steep::Diagnostic::Ruby::ProcTypeExpected

def header_line

def header_line
  "Proc type is expected but `#{type.to_s}` is specified"
end

def initialize(node:, type:)

def initialize(node:, type:)
  super(node: node)
  @type = type
end