#! stap -p4
#
# Make sure that 'delete' works in all variations.
global a, b, c, d, e, f
probe begin {
a = 1; delete a;
b = "b"; delete b;
c <<< 1; delete c;
d[1] = 1; delete d[1]; delete d;
e[1] = "e"; delete e[1]; delete e;
f[1] <<< 1; delete f[1]; delete f;
x = 1; delete x;
y = "y"; delete y;
}