Merge branch 'msvc'
[platform/upstream/automake.git] / lib / Automake / tests / DisjCon2.pl
1 # Catch common programming error:
2 # A non-Condition reference passed to new.
3 use Automake::Condition;
4 use Automake::DisjConditions;
5
6 my $cond = new Automake::Condition ('TRUE');
7 my $cond2 = new Automake::DisjConditions ($cond);
8 new Automake::DisjConditions ($cond2);