class RuboCop::Cop::Sorbet::ForbidTLet

foo #: Integer
# good
T.let(foo, Integer)
# bad
@example
Disallows using ‘T.let` anywhere.

def on_send(node)

def on_send(node)
  add_offense(node) if t_let?(node)
end