package uk.ac.cam.rkh23.Generics;

import java.util.LinkedList;

public class TypeErasureBytecodeDemo {

	public static void main(String[] args) {
		LinkedList l = new LinkedList();
		l.add(new Double(7.0));
		Double d2 = (Double)l.get(0);
		
		String s = "======================================";
		
		LinkedList<Double> ll = new LinkedList<Double>();
		ll.add(new Double(7.0));
		Double d = ll.get(0);
	}

}
