mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
11 lines
258 B
Ruby
11 lines
258 B
Ruby
# typed: strict
|
|
|
|
class Version
|
|
# For `alias eql? ==`
|
|
# See discussions:
|
|
# - https://github.com/sorbet/sorbet/pull/1443
|
|
# - https://github.com/sorbet/sorbet/issues/2378
|
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
def ==(other); end
|
|
end
|