summaryrefslogtreecommitdiff
path: root/test/files/run/t5527.check
blob: bdd5ac8295a7665c9f297b3bcec79c4630effbdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[[syntax trees at end of parser]]// Scala source: newSource1
package <empty> {
  abstract trait Test extends scala.ScalaObject {
    def $init$() = {
      ()
    };
    def sth: scala.Unit = {
      /** Some comment here */
      object Maybe extends scala.ScalaObject {
        def <init>() = {
          super.<init>();
          ()
        };
        /** Some comment inside */
        def nothing() = ()
      };
      ()
    }
  }
}