/** * Chapter 9: Interfaces * Section 9.1.2: Interface Modifiers * Author: Ken Barclay * * File: interface.modifiers.9.1.2.groovy * * An interface declaration may be preceded by the optional * public modifier. * * Bug: any Groovy modifier is permitted, including private, * transient, etc. */ private interface Line { }