View Javadoc
1   package org.checkstyle.suppressionxpathfilter.indentation;
2   
3   public class InputXpathIndentationLambdaOne {
4       void test() {
5           MyLambda getA =
6           (a) -> a; // warn
7       }
8   }
9   
10  interface MyLambda {
11      int myMethod(int a);
12  }