Skip to content

Commit

Permalink
Fix deprecation warning for bare package
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed May 21, 2015
1 parent 9cf2c1c commit c5b581a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions S10-packages/basic.t
Expand Up @@ -176,14 +176,14 @@ eval-lives-ok q' module MapTester { (1, 2, 3).map: { $_ } } ',
}

{
eval-lives-ok 'class RT64688_c1;use Test', 'use after class line';
eval-lives-ok 'unit class RT64688_c1;use Test', 'use after class line';
eval-lives-ok 'class RT64688_d1 { use Test }', 'use in class block';
eval-lives-ok 'module RT64688_m1;use Test', 'use after module line';
eval-lives-ok 'unit module RT64688_m1;use Test', 'use after module line';
eval-lives-ok 'module RT64688_m2 { use Test }', 'use in module block';
eval-lives-ok 'package RT64688_p2 { use Test }', 'use in package block';
eval-lives-ok 'grammar RT64688_g1;use Test', 'use after grammar line';
eval-lives-ok 'unit grammar RT64688_g1;use Test', 'use after grammar line';
eval-lives-ok 'grammar RT64688_g2 { use Test }', 'use in grammar block';
eval-lives-ok 'role RT64688_r1;use Test', 'use after role line';
eval-lives-ok 'unit role RT64688_r1;use Test', 'use after role line';
eval-lives-ok 'role RT64688_r2 { use Test }', 'use in role block';
}

Expand Down

0 comments on commit c5b581a

Please sign in to comment.