Of some note:
    
    
    type
        Thing = concept t
            work(t)
    
    proc start(t: Thing) =
        mixin work
        t.work()
        work(t) # undeclared identifier
    
    
    Run

Will make it `work` :P

Reply via email to