1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 02:44:36 +03:00
semantic/test/fixtures/ruby/lambda.A.rb

9 lines
114 B
Ruby
Raw Normal View History

lambda {}
2017-02-23 01:41:30 +03:00
lambda { foo }
lambda { |a, b: false, c = nil| 1 }
-> {}
-> { foo }
-> foo { 1 }
-> (d, *f, (x, y)) {}