1   package com.puppycrawl.tools.checkstyle.grammar.java8;
2   import java.lang.annotation.ElementType;
3   import java.lang.annotation.Target;
4   
5   
6   
7   public class InputAnnotations4 {
8   	
9   	public static void methodName(@NotNull String args) {
10  		
11  	}
12  	
13  	@Target(ElementType.TYPE_USE)
14  	@interface NotNull {
15  
16  	}
17  }