summaryrefslogtreecommitdiff
path: root/test/files/positions/Scaladoc2.scala
blob: 78bc4acb285b868c107d2421f068e4e9c499b99a (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 {}
}