Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
don't typocheck types that actually exist
  • Loading branch information
TimToady committed Nov 7, 2015
1 parent 9e4902f commit e1e03e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Grammar.nqp
Expand Up @@ -2390,7 +2390,7 @@ grammar Perl6::Grammar is HLL::Grammar does STD {
]
|| <.ws>[<typename><.ws>]* <ident> <?before <.ws> [':'?':'?'=' | <.terminator> | $ ]> {}
<.malformed("$*SCOPE (did you mean to declare a sigilless \\{~$<ident>} or \${~$<ident>}?)")>
|| <.ws><typo_typename> <!>
|| <.ws><!typename> <typo_typename> <!>
|| <.malformed($*SCOPE)>
]
}
Expand Down

0 comments on commit e1e03e6

Please sign in to comment.