Labyrinth benchmakr
[IRC.git] / Robust / src / Benchmarks / SingleTM / Labyrinth / List_Node.java
1
2 public class List_Node {
3     Object dataPtr;
4     List_Node nextPtr;
5
6     public List_Node() {
7         dataPtr = null;
8         nextPtr = null;
9     }
10 }