public void testMethRefOnProxifiedClass() {
Methref<? extends Oink> m = Methref.on(Oink.class);
m.to().woink();
assertEquals("woink", m.ref());
ProxyAspect a1 = new ProxyAspect(DummyAdvice.class, new AllTopMethodsPointcut());
ProxyProxetta pp = ProxyProxetta.withAspects(a1);
Oink oink = (Oink) pp.builder(Oink.class).newInstance();
assertFalse(oink.getClass().equals(Oink.class));