blob: b0318576834b8462ea2db6c8a385f15702737af5 [file] [log] [blame]
package com.example;
public interface TestInterface {
public default String getTestString() {
return "Alpha";
}
}