Sign in
qemu
/
meson
/
a3d3efd3cfc6e9b0ce8a7536527e1e9ca134f80a
/
.
/
test cases
/
common
/
244 variable scope
/
meson.build
blob: e5e79738756f876771a4f35bd4c03c49a425e9b8 [
file
] [
log
] [
blame
]
project
(
'variable scope'
)
x
=
1
assert
(
is_variable
(
'x'
))
assert
(
get_variable
(
'x'
)
==
1
)
set_variable
(
'x'
,
10
)
assert
(
get_variable
(
'x'
)
==
10
)
unset_variable
(
'x'
)
assert
(
not
is_variable
(
'x'
))