blob: 56d4985166355314c7ba490323d1e9fa4ee82e43 [file] [log] [blame]
package testPackage;
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* 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://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: TestCtorWithNull.java,v $
* $Revision: 1.2 $ $Date: 2005/02/15 23:00:32 $
*/
/**
*
* @since 1.0.0
*/
public class TestCtorWithNull {
public TestCtorWithNull(String x) {
// This is just a test to see that ctor will be selected if it has a null passed in for Tree Expression Processing.
}
}