1 2 3 4 5 6 7 8 9 10 11 12 13 14
public class ClassWithCommentsOnLineOfCode { public void run() { int i = 5; // comment on line of code, ncloc should not be impacted int j = 5; /** test comment tst 2 comment **/ int k = 5; /* another test comment */ } }