aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t8608-no-format.scala
blob: 71c369a7eac00a06c528a92ceaac87d7608ff3da (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                
import scala.tools.partest.JavapTest

object Test extends JavapTest {
  def code = """
    |f"hello, world"
    |:javap -prv -
  """.stripMargin

  // no format
  override def yah(res: Seq[String]) = {
    // note: avoid the word "information"
    res forall (!_.contains("StringOps.format"))
  }
}