mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
9 lines
214 B
Ruby
9 lines
214 B
Ruby
# typed: strict
|
|
|
|
module Ignorable
|
|
include Kernel
|
|
# This is a workaround to enable `raise` to be aliased
|
|
# @see https://github.com/sorbet/sorbet/issues/2378#issuecomment-569474238
|
|
def self.raise(*); end
|
|
end
|