summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/util/LinkedList.scala
blob: 375e6ca6155072f4765d4d1f872586b0745a29ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* NSC -- new scala compiler
 * Copyright 2005 LAMP/EPFL
 * @author  Martin Odersky
 */
// $Id$
package scala.tools.nsc.util;

class LinkedList[T] {
  var next: LinkedList[T] = null;
  var elem: T = _;
}