blob: bc415dfc0d9522dda11171f73d6705087dee050d [file] [log] [blame]
package com.siyeh.igtest.classmetrics.constructor_count;
public class ConstructorCount {
ConstructorCount() {}
ConstructorCount(String s) {}
@Deprecated
ConstructorCount(int i) {}
class A {
A() {}
A(int i) {}
A(String s) {}
}
}