Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2007-10-22 20:22:19 +0400
committerMarek Safar <marek.safar@gmail.com>2007-10-22 20:22:19 +0400
commit3a18dc780fec39afadf948d6a84cdce64b28257f (patch)
tree9568bc0bf928e1aae678f327405a1e346468d8a8 /mcs/tests/test-391.cs
parent4be73c4c34718882336c4636aa83d57462be976c (diff)
New test.
svn path=/trunk/mcs/; revision=87915
Diffstat (limited to 'mcs/tests/test-391.cs')
-rw-r--r--mcs/tests/test-391.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/tests/test-391.cs b/mcs/tests/test-391.cs
new file mode 100644
index 00000000000..8c9769101b8
--- /dev/null
+++ b/mcs/tests/test-391.cs
@@ -0,0 +1,25 @@
+class C
+{
+ void Foo (int i)
+ {
+ }
+
+ void Foo (ref int i)
+ {
+ }
+
+ void Bar (out bool b)
+ {
+ b = false;
+ }
+
+ void Bar (bool b)
+ {
+ }
+
+ public static void Main ()
+ {
+ }
+}
+
+