blob: 0cc3477a438862c20e428cc91262031ad0a0b24e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2013 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
*******************************************************************************/
package a.b.c;
/**
*
* @since
*/
public class TestField4 {
public static class Inner1 {
/**
* @noreference
*/
public Object field = null;
protected class Inner3 {
/**
* @noreference
*/
protected Object field = null;
public class Inner {
/**
* @noreference
*/
protected int number = -1;
}
}
}
class Inner2 {
/**
* @noreference
*/
Object field = null;
}
}