summaryrefslogtreecommitdiff
path: root/test/files/positions/Scaladoc2.scala
blob: e52263d86c6c6b472099fc662b7e797acc88ce90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
object Scaladoc2 {
  def f {
    /**
     * Foo
     */
    def g {}

    /*
     * Blah blah
     */
    def h{}
    h
  }

  def h {}
}