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