1   package com.puppycrawl.tools.checkstyle.checks.whitespace
2   .nowhitespacebefore;
3   
4   import java.util.function.Supplier;
5   
6   public class InputNoWhitespaceBeforeAtStartOfTheLine {
7       public static class A {
8           private A() {
9           }
10      }
11  
12      public <V> void methodName(V value) {
13          Supplier<?> t =
14  A ::new;
15      }
16  }