summaryrefslogtreecommitdiff
path: root/src/library/scala/reflect/NoManifest.scala
blob: 6dbb9f9a92eae67fb115d46b17da88944399b665 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2007-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$


package scala.reflect

/** <p> One of the branches of an OptManifest
  */
@serializable
object NoManifest extends OptManifest[Nothing] {
  override def toString = "<?>"
}