in reply to Re: Introspecting type informations?
in thread Introspecting type informations?

Unlikely, I'd rather say your system is buggy.
$ perl -wMstrict -MO=Deparse -e 'my DB $x' BEGIN { $^W = 1; } use strict; my DB $x; -e syntax OK $

Thanks for the interesting observation! :)

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

update

couldn't reproduce on win

C:\>perl -wMstrict -MO=Deparse -e "my DB $x" BEGIN { $^W = 1; } use strict; my DB $x; -e syntax OK