langtools/test/tools/javac/NonAmbiguousField/Test.java
author sogoel
Fri, 15 May 2015 01:09:51 -0700
changeset 30713 4a01965154be
parent 17800 fba31de14b46
permissions -rw-r--r--
8068464: Group 10d: golden files for tests in tools/javac dir Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30713
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     1
/*
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     2
 * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     4
 *
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     7
 * published by the Free Software Foundation.
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     8
 *
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    13
 * accompanied this code).
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    14
 *
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    18
 *
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    21
 * questions.
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    22
 */
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    23
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug 4053724
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary Certain non-ambiguous field references were reported by the
30713
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    28
 *          compiler as ambiguous.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 * @author turnidge
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 *
17800
fba31de14b46 7164114: Two jtreg tests are not run due to no file extension on the test files
vromero
parents: 10
diff changeset
    31
 * @compile one/Parent.java two/Child.java
30713
4a01965154be 8068464: Group 10d: golden files for tests in tools/javac dir
sogoel
parents: 17800
diff changeset
    32
 * @compile/fail/ref=Test.out -XDrawDiagnostics  one/Parent2.java two/Child2.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 */