001package org.projectlombok.test;
002
003/**
004 * A useful interface
005 */
006public interface Useful {
007    void doSomething ();
008}
009