blob: b26fd25bf974a8ea39c6b28edf40d555f3ccb849 [file] [log] [blame]
class C {
void <caret>method(int... args) {
}
{
method(1,2);
method(1,2,3);
method();
}
}