Søren Gjesse | d1e0899 | 2022-02-07 16:46:31 +0100 | [diff] [blame] | 1 | // Copyright (c) 2022, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | |
| 5 | package jdk8272564; |
| 6 | |
| 7 | interface I { |
| 8 | public String toString(); |
Søren Gjesse | 1b28e47 | 2022-02-08 15:46:41 +0100 | [diff] [blame] | 9 | |
| 10 | public int hashCode(); |
| 11 | |
| 12 | public boolean equals(Object other); |
Søren Gjesse | d1e0899 | 2022-02-07 16:46:31 +0100 | [diff] [blame] | 13 | } |