11cb0ef41Sopenharmony_ci// Flags: --expose-internals 21cb0ef41Sopenharmony_ci'use strict'; 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ciconst common = require('../common'); 51cb0ef41Sopenharmony_ciif (!common.hasCrypto) 61cb0ef41Sopenharmony_ci common.skip('missing crypto'); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciconst util = require('util'); 91cb0ef41Sopenharmony_ciconst { internalBinding } = require('internal/test/binding'); 101cb0ef41Sopenharmony_ciconst TLSWrap = internalBinding('tls_wrap').TLSWrap; 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_ci// This will abort if internal pointer is not set to nullptr. 131cb0ef41Sopenharmony_ciutil.inspect(new TLSWrap()); 14