зеркало из https://github.com/mono/mail-archives.git
156 строки
5.2 KiB
HTML
156 строки
5.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Mono-bugs] [Bug 625114] New: dmcs System.Core compilation issue with generic parameters
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%20625114%5D%20New%3A%20dmcs%20System.Core%20compilation%20issue%0A%20with%20generic%20parameters&In-Reply-To=">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
|
<LINK REL="Previous" HREF="102472.html">
|
|
<LINK REL="Next" HREF="102476.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Mono-bugs] [Bug 625114] New: dmcs System.Core compilation issue with generic parameters</H1>
|
|
<B>bugzilla_noreply at novell.com</B>
|
|
<A HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%20625114%5D%20New%3A%20dmcs%20System.Core%20compilation%20issue%0A%20with%20generic%20parameters&In-Reply-To="
|
|
TITLE="[Mono-bugs] [Bug 625114] New: dmcs System.Core compilation issue with generic parameters">bugzilla_noreply at novell.com
|
|
</A><BR>
|
|
<I>Fri Jul 23 10:39:12 EDT 2010</I>
|
|
<P><UL>
|
|
<LI>Previous message: <A HREF="102472.html">[Mono-bugs] [Bug 565616] InvalidCastException when storing a not IConvertible value in a string datacolumn.
|
|
</A></li>
|
|
<LI>Next message: <A HREF="102476.html">[Mono-bugs] [Bug 625114] dmcs System.Core compilation issue with generic parameters
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#102475">[ date ]</a>
|
|
<a href="thread.html#102475">[ thread ]</a>
|
|
<a href="subject.html#102475">[ subject ]</a>
|
|
<a href="author.html#102475">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE><A HREF="http://bugzilla.novell.com/show_bug.cgi?id=625114">http://bugzilla.novell.com/show_bug.cgi?id=625114</A>
|
|
|
|
<A HREF="http://bugzilla.novell.com/show_bug.cgi?id=625114#c0">http://bugzilla.novell.com/show_bug.cgi?id=625114#c0</A>
|
|
|
|
|
|
Summary: dmcs System.Core compilation issue with generic
|
|
parameters
|
|
Classification: Mono
|
|
Product: Mono: Compilers
|
|
Version: SVN
|
|
Platform: Other
|
|
OS/Version: Other
|
|
Status: NEW
|
|
Severity: Normal
|
|
Priority: P5 - None
|
|
Component: C#
|
|
AssignedTo: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">msafar at novell.com</A>
|
|
ReportedBy: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">jbevain at novell.com</A>
|
|
QAContact: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">mono-bugs at lists.ximian.com</A>
|
|
CC: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">lupus at novell.com</A>
|
|
Found By: ---
|
|
Blocker: ---
|
|
|
|
|
|
Extract from monodis --method mcs/class/lib/net_4_0/System.Core.dll:
|
|
|
|
<<<<<
|
|
########## System.Func`15
|
|
2949: instance default void '.ctor' (object A_1, native int A_2) (param: 4185
|
|
impl_flags: runtime managed )
|
|
2950: instance default !TResult Invoke (!T1 arg1, !T2 arg2, !T3 arg3, !T4 arg4,
|
|
!T5 arg5, !T6 arg6, !T7 arg7, !T8 arg8, !T9 arg9, !T10 arg10, !T11 arg11, !T12
|
|
arg12, !T13 arg13, !T4 arg14) (param: 4185 impl_flags: runtime managed )
|
|
2951: instance default class [mscorlib]System.IAsyncResult BeginInvoke (!T1
|
|
arg1, !T2 arg2, !T3 arg3, !T4 arg4, !T5 arg5, !T6 arg6, !T7 arg7, !T8 arg8, !T9
|
|
arg9, !T10 arg10, !T11 arg11, !T12 arg12, !T13 arg13, !T4 arg14, class
|
|
[mscorlib]System.AsyncCallback callback, object 'object') (param: 4199
|
|
impl_flags: runtime managed )
|
|
2952: instance default !TResult EndInvoke (class [mscorlib]System.IAsyncResult
|
|
A_1) (param: 4215 impl_flags: runtime managed )
|
|
<<<<<
|
|
|
|
Notice that the last parameter of Invoke is of type T4 while in the source it's
|
|
defined as T14:
|
|
|
|
from mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Utils/Function.cs:
|
|
|
|
public delegate TResult Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
|
|
T12, T13, T14, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6,
|
|
T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14
|
|
arg14);
|
|
|
|
--
|
|
Configure bugmail: <A HREF="http://bugzilla.novell.com/userprefs.cgi?tab=email">http://bugzilla.novell.com/userprefs.cgi?tab=email</A>
|
|
------- You are receiving this mail because: -------
|
|
You are the QA contact for the bug.
|
|
</PRE>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI>Previous message: <A HREF="102472.html">[Mono-bugs] [Bug 565616] InvalidCastException when storing a not IConvertible value in a string datacolumn.
|
|
</A></li>
|
|
<LI>Next message: <A HREF="102476.html">[Mono-bugs] [Bug 625114] dmcs System.Core compilation issue with generic parameters
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#102475">[ date ]</a>
|
|
<a href="thread.html#102475">[ thread ]</a>
|
|
<a href="subject.html#102475">[ subject ]</a>
|
|
<a href="author.html#102475">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
|
|
<hr>
|
|
<a href="http://lists.ximian.com/mailman/listinfo/mono-bugs">More information about the mono-bugs
|
|
mailing list</a><br>
|
|
</body></html>
|