summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/ruby-mode-resources/ruby-method-params-indent.rb
blob: 2b665797397ff1326acdfc6d71e7ca65c63c4a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class C
  def self.foo(
    baz,
    bar
  ) =
    what

  def foo=(
    baz,
    bar
  )
    hello
  end
end

# Local Variables:
# ruby-method-params-indent: 0
# End: