static AutoCloseable _wrapIOCloseable(final AutoCloseable c) {
  ret c == null ? null : autoCloseable {
    c.close();
    _registerIO(c, null, false);
  };
}