blob: 1694eea79731027c1cac88ef8a44b3e9cd112f4b [file] [log] [blame]
Søren Gjessed1e08992022-02-07 16:46:31 +01001// 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
5package jdk8272564;
6
7interface I {
8 public String toString();
Søren Gjesse1b28e472022-02-08 15:46:41 +01009
10 public int hashCode();
11
12 public boolean equals(Object other);
Søren Gjessed1e08992022-02-07 16:46:31 +010013}