langtools/test/tools/javac/InconsistentInheritedSignature.java
author lana
Tue, 25 Apr 2017 07:38:50 +0000
changeset 44909 b53c770dc04f
parent 26528 a1a7ad15183e
permissions -rw-r--r--
Added tag jdk-10+1 for changeset 3a409afd3f86

/*
 * @test /nodynamiccopyright/
 * @bug 4041948
 * @summary javac previously allowed interfaces to inherit methods with
 *          inconsistent signatures.
 * @author turnidge
 *
 * @compile/fail/ref=InconsistentInheritedSignature.out -XDrawDiagnostics InconsistentInheritedSignature.java
 */
interface I1{
  int f();
}
interface I2 {
  void f() ;
}
// error: Return types conflict.
interface InconsistentInheritedSignature extends I1,I2 { }