pekko/akka-docs/rst/scala/code/docs/CompileOnlySpec.scala
2016-03-08 18:17:35 +01:00

13 lines
301 B
Scala

/*
* Copyright (C) 2009-2016 Lightbend Inc. <http://www.lightbend.com>
*/
package docs
trait CompileOnlySpec {
/**
* Given a block of code... does NOT execute it.
* Useful when writing code samples in tests, which should only be compiled.
*/
def compileOnlySpec(body: => Unit) = ()
}