Sha256: 7190d662897a9acf81197fdbd0b638fe96bd4983f00cd2178daee05066a87dde

Contents?: true

Size: 589 Bytes

Versions: 3

Compression:

Stored size: 589 Bytes

Contents

def f1
  yield :a, :b, :c
end
def log1(x); end
f1 {|x| log1(x) }

def f2
  yield :a, :b, :c
end
def log2(x); end
f2 {|x,| log2(x) }

def f3
  yield [:a, :b, :c]
end
def log3(x); end
f3 {|x| log3(x) }

def f4
  yield [:a, :b, :c]
end
def log4(x); end
f4 {|x,| log4(x) }

__END__
# Classes
class Object
  private
  def f1: { (:a, :b, :c) -> nil } -> nil
  def log1: (:a) -> nil
  def f2: { (:a, :b, :c) -> nil } -> nil
  def log2: (:a) -> nil
  def f3: { ([:a, :b, :c]) -> nil } -> nil
  def log3: ([:a, :b, :c]) -> nil
  def f4: { ([:a, :b, :c]) -> nil } -> nil
  def log4: (:a) -> nil
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
typeprof-0.9.2 smoke/block-ambiguous.rb
typeprof-0.9.1 smoke/block-ambiguous.rb
typeprof-0.9.0 smoke/block-ambiguous.rb