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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2002-12-11 06:19:24 +0300
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2002-12-11 06:19:24 +0300
commit424ef47428eff6a5d03f8395ea2a75047a2f0fc3 (patch)
tree75c558666a3db9a60e9e01477a57e5bb17e4cc07 /mcs/tests/test-102.cs
parente4eba3b888450456db217079b1f4351c099fcd10 (diff)
2002-12-10 Ravi Pratap <ravi@ximian.com>
* test-102.cs : Improve to catch the case when an attribute can be emitted twice for the same program element but with different targets. svn path=/trunk/mcs/; revision=9556
Diffstat (limited to 'mcs/tests/test-102.cs')
-rw-r--r--mcs/tests/test-102.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mcs/tests/test-102.cs b/mcs/tests/test-102.cs
index 39f018c1378..de79a8ea464 100644
--- a/mcs/tests/test-102.cs
+++ b/mcs/tests/test-102.cs
@@ -26,7 +26,8 @@ namespace N1 {
int i;
- [Mine ("Foo")]
+ [Mine ("Foo")]
+ [return: Mine ("Bar")]
public static int Main ()
{
return 0;