1   package com.puppycrawl.tools.checkstyle.grammar.java8;
2   
3   import java.util.logging.Logger;
4   
5   
6   public class InputLambda10 {
7   
8   	private static final Logger LOG = Logger.getLogger(InputLambda10.class.getName());
9   
10  	public static void testVoidLambda(TestOfVoidLambdas test) {
11  		LOG.info("Method called");
12  		test.doSmth("fef");
13  	}
14  	
15  	
16  	public static void main(String[] args) {
17  		
18  		testVoidLambda(s1 -> LOG.info(s1));
19  	}
20  
21  	private interface TestOfVoidLambdas {
22  
23  		public void doSmth(String first);
24  	}
25  }