summaryrefslogtreecommitdiff
path: root/test/disabled/run/t4532.scala
blob: 0dabd2dca49a57d12995288cbc50f813ba2cba1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import scala.tools.partest.ReplTest
import scala.tools.util.Javap

object Test extends ReplTest {
  
  // ugh, windows
  def expectedOutput =
"""Type in expressions to have them evaluated.
Type :help for more information.

scala> 

scala> object Bippy { class Dingus ; object Bop }
defined module Bippy

scala> :javap Bippy.Dingus
Compiled from "<console>"public class Bippy$Dingus extends java.lang.Object implements scala.ScalaObject{    public Bippy$Dingus();}
scala> :javap Bippy.Bop
Compiled from "<console>"public final class Bippy$Bop$ extends java.lang.Object implements scala.ScalaObject{    public static final Bippy$Bop$ MODULE$;    public static {};    public Bippy$Bop$();}
scala> 

scala> 
"""

  override def eval() = 
    if (Javap.isAvailable()) super.eval()
    else expectedOutput.lines

  def code = """
    |object Bippy { class Dingus ; object Bop }
    |:javap Bippy.Dingus
    |:javap Bippy.Bop
  """.stripMargin
}