From 42da0e5688328a069b9fdb361888693e35c34cd7 Mon Sep 17 00:00:00 2001 From: florian <florian@freepascal.org> Date: Tue, 20 Feb 2007 19:24:40 +0000 Subject: [PATCH] * new test git-svn-id: trunk@6577 - --- .gitattributes | 1 + tests/tbs/tb0530.pp | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 tests/tbs/tb0530.pp diff --git a/.gitattributes b/.gitattributes index 746c20e3c0..d7a3f930d2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6235,6 +6235,7 @@ tests/tbs/tb0525.pp svneol=native#text/plain tests/tbs/tb0526.pp -text tests/tbs/tb0527.pp svneol=native#text/plain tests/tbs/tb0528.pp svneol=native#text/x-pascal +tests/tbs/tb0530.pp svneol=native#text/plain tests/tbs/ub0060.pp svneol=native#text/plain tests/tbs/ub0069.pp svneol=native#text/plain tests/tbs/ub0119.pp svneol=native#text/plain diff --git a/tests/tbs/tb0530.pp b/tests/tbs/tb0530.pp new file mode 100644 index 0000000000..7b03121ab9 --- /dev/null +++ b/tests/tbs/tb0530.pp @@ -0,0 +1,15 @@ +type + tset1 = set of 0..7; + tset2 = set of 0..15; + +procedure p(s : tset1);overload; + begin + end; + + +procedure p(s : tset2);overload; + begin + end; + +begin +end. \ No newline at end of file