/* Test a tricky way of calling a public proc without making a method call */

class foo {
    public proc bar()
    {
        (self.bar)("hi");
    }
}