Add to-do note

This commit is contained in:
Patrick Lühne 2020-05-12 06:10:52 +02:00
parent 8153352b66
commit 9621cb1e0c
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 1 additions and 0 deletions

View File

@ -270,6 +270,7 @@ fn input_statement_body<'i>(mut input: &'i str, problem: &crate::Problem)
// Parse input constant specifiers
else
{
// TODO: detect conflicting domain specifiers (for example: n -> program, n -> integer)
let (domain, remaining_input) = match domain_specifier(input)?
{
(Some(domain), remaining_input) => (domain, remaining_input),