Minor: drop semicolon in package declaration everywhere.
This commit is contained in:
+3
-3
@@ -1,7 +1,7 @@
|
||||
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
||||
// FILE: p/Sam.java
|
||||
|
||||
package p;
|
||||
package p
|
||||
|
||||
public interface Sam {
|
||||
void sam();
|
||||
@@ -9,7 +9,7 @@ public interface Sam {
|
||||
|
||||
// FILE: p/Foo.java
|
||||
|
||||
package p;
|
||||
package p
|
||||
|
||||
public class Foo {
|
||||
public void foo(Sam sam);
|
||||
@@ -24,4 +24,4 @@ open class K0 : Foo()
|
||||
|
||||
class K : K0() {
|
||||
fun foo(f: () -> Unit) {}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user