/*
 * Copyright (c) 2005 Oliver Boehm.
 * All rights reserved. 
 * This program and the accompanying materials are made available 
 * under the terms of the Eclipse Public License v1.0 
 * which accompanies this distribution and is available at 
 * http://eclipse.org/legal/epl-v10.html 
 *
 * Created on 25.03.2005
 *
 * $Id$
 */
package x.lint;

import x.taxi.*;

public class Main extends Object {

    /**
     * @param args
     */
    public static void main(String[] args) {
        new Main().run();
        Long l = new Long(1);
        String s = l.toString();
    }
    
    public void run() {
        new Car().toString();
    }

}
