blob: 6df3f08d828a50210aa91f614daef4e8efe611c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 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
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package testPackage;
/*
* $RCSfile: TestCtorWithNull.java,v $
* $Revision: 1.3 $ $Date: 2005/08/24 20:58:55 $
*/
/**
*
* @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.
}
}