in reply to my hash used only once: possible typo
but this code does:{ package SQL_Wrapper; use strict; use warnings; our %q; } package main; use strict; use warnings; my %q = %SQL_Wrapper::q; $q{f} = 42;
What is setting/changing %SQL_Wrapper::q in your program or modules that your program is using?{ package SQL_Wrapper; use strict; use warnings; # our %q; } package main; use strict; use warnings; my %q = %SQL_Wrapper::q; $q{f} = 42;
|
|---|