module: PR-1371 invoke-with: d2c --no-binaries PR#1371.dylan define not-inline method foo(o, b == #t) end; define not-inline method foo(i :: , b == #t) end; define not-inline method bar(n :: ) 0 end; define not-inline method bar(i :: ) 142 end; define sealed domain foo(, ); define sealed domain bar(); define not-inline function cheu(some-number :: ) end; define function baz(some-number :: , other) block () bar(other); foo(some-number, other); bar(other); exception () bar(other); end block; if (other) 42 end; end;