mirror of
https://github.com/lune-org/lune.git
synced 2025-04-05 11:00:56 +01:00
15 lines
253 B
Text
15 lines
253 B
Text
--!nocheck
|
|
--!nolint
|
|
|
|
local ffi = require("@lune/ffi")
|
|
local box = ffi.box(ffi.i32.size)
|
|
local ref = box:ref()
|
|
|
|
local wt = setmetatable({}, { __mode = "v" })
|
|
|
|
wt[1] = box
|
|
box = nll
|
|
|
|
collectgarbage("collect")
|
|
|
|
assert(wt[1] ~= nil, "ref hold box failed")
|