X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/c733aff6d0b2b107c88e37a1491f270db0634819..bcde46a8503359755ca72fe581a18f7a3bcaaf37:/tests/decl-good.at diff --git a/tests/decl-good.at b/tests/decl-good.at index 7cd68db..230202b 100644 --- a/tests/decl-good.at +++ b/tests/decl-good.at @@ -100,3 +100,7 @@ SIMPLE_DECLS_EXPLAIN( [[int ((int))], [type function (int) returning int], [int (int)]], [[int (x(int))], [declare x as function (int) returning int], [int x(int)]], [[int (())], [type function returning int], [int ()]]) + +SIMPLE_DECLS_EXPLAIN( + [[int (x())], [declare x as function returning int], [int x()]], + [[int ((x)())], [declare x as function returning int], [int x()]])