COBCH1660 型は Disposable ではない

PERFORM USING 文で指定された項目は Disposable ではありません。

次の例では、d1 は java.lang.AutoCloseable インタフェースを実装する必要があります。

class-id myClass.
method-id myMethod.
 perform using d1 as string = "Hello" *> implement d1 as type java.lang.AutoCloseable
   continue
 end-perform.
end method.
end class.