langtools/test/tools/javac/InconsistentInheritedSignature.java
author duke
Wed, 05 Jul 2017 23:01:50 +0200
changeset 44228 e46434c65a2b
parent 26528 a1a7ad15183e
permissions -rw-r--r--
Merge

/*
 * @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 { }