summaryrefslogtreecommitdiff
path: root/src/library/scala/runtime/RichUnit.scala
blob: bce60f90c6bf7792d713753665a66779f21e5287 (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
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2010, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$


package scala.runtime

/** This class exists only as a dummy subclass so that there are two ambiguous
 *  implicit conversions from Unit to some subclass to Object.
 *  It's important that this class should NOT inherit from Ordered.
 *
 *  Note - in reality the ambiguity is successfully introduced by any2stringadd
 *  and orderingToOrdered, and adding an implicit from () => RichUnit actually
 *  resolves the ambiguity by being more specific, and succeeds! So this class
 *  is probably useless, and unitWrapper has been removed from Predef.
 */
final class RichUnit {}