00001 00002 module Stew { 00003 00004 interface Carrot; 00005 interface Onion; 00006 00007 interface Carrot { 00008 Onion anOnion(); 00009 }; 00010 00011 interface Onion { 00012 }; 00013 00014 };