Skip to content

Instantly share code, notes, and snippets.

@kentfredric
Created May 28, 2009 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentfredric/119398 to your computer and use it in GitHub Desktop.
Save kentfredric/119398 to your computer and use it in GitHub Desktop.
Strange Behaviour with B::Deparse
use strict;
use warnings;
use MooseX::Declare;
class CodeA {
require CodeB;
has 'someAttribute' => ( isa => 'Str');
}
1;
use strict;
use warnings;
use MooseX::Declare;
class CodeB {
require CodeA;
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment