diff --git a/source/compiler/sc1.c b/source/compiler/sc1.c index ab319b46..9f0a6432 100644 --- a/source/compiler/sc1.c +++ b/source/compiler/sc1.c @@ -4276,6 +4276,8 @@ static int declargs(symbol *sym,int chkshadow) ident=iREFERENCE; break; case tCONST: + if (fconst) + error(42); /* invalid combination of class specifiers */ if (ident!=iVARIABLE || numtags>0 || fpragma) error(1,sc_tokens[tSYMBOL-tFIRST],sc_tokens[tCONST-tFIRST]); fconst=TRUE; diff --git a/source/compiler/tests/gh_730_fix_const_arg.meta b/source/compiler/tests/gh_730_fix_const_arg.meta new file mode 100644 index 00000000..71e932a2 --- /dev/null +++ b/source/compiler/tests/gh_730_fix_const_arg.meta @@ -0,0 +1,6 @@ +{ + 'test_type': 'output_check', + 'errors': """ +gh_730_fix_const_arg.pwn(1) : error 042: invalid combination of class specifiers + """ +} diff --git a/source/compiler/tests/gh_730_fix_const_arg.pwn b/source/compiler/tests/gh_730_fix_const_arg.pwn new file mode 100644 index 00000000..a999af88 --- /dev/null +++ b/source/compiler/tests/gh_730_fix_const_arg.pwn @@ -0,0 +1,11 @@ +Func1(const const a) return a; // error 042: invalid combination of class specifiers +Func2(const a) return a; +Func3(a) return a; + +main() +{ + Func1(0); + Func2(0); + Func3(0); +} +