// "Qualify static 'm()' call with reference to class 'I'" "true-preview" interface I { static void m() {} } class A { void f(I i){ I.m(); } }