summaryrefslogblamecommitdiff
path: root/test/scaladoc/resources/Trac4452.scala
blob: b844437dba14ff409985511c4005a7d0676ce47a (plain) (tree)
1
2
3
4
5
6
7

                           




                                         




              

















                             
/**
 * @define MacroWithNewLine
 * This macro should not include "*".
 *
 * @define MacroWithoutNewLine This macro
 * should
 * include "*".
 */
class Test

/**
 * TestA class
 */
class Trac4452 extends Test {
  /** $MacroWithNewLine */
  def a = 1

  /** $MacroWithoutNewLine */
  def b = 2

  /**
   * $MacroWithNewLine
   */
  def c = 3

  /**
   * $MacroWithoutNewLine
   */
  def d = 4
}