Re: [Mono-dev] bug or wrong mono compilation?

2010-05-24 Thread xplicit
I posted the bug #608396 Geoff Norton wrote: It appears to be a bug in the dmcs compiler, could you file it in bugzilla please? -- View this message in context: http://mono.1490590.n4.nabble.com/bug-or-wrong-mono-compilation-tp2227282p2228975.html Sent from the Mono - Dev mailing list

Re: [Mono-dev] bug or wrong mono compilation?

2010-05-23 Thread Alan McGovern
It works fine with r156922 from SVN. When building from trunk, always give the svn revision that you built with. Alan. On Sat, May 22, 2010 at 5:36 PM, xplicit s...@ngs.ru wrote: I have compiled mono 2.7 from trunk and try to use C# 4.0 features. I wrote simple program: using System;

Re: [Mono-dev] bug or wrong mono compilation?

2010-05-23 Thread xplicit
svn info URL: svn://anonsvn.mono-project.com/source/trunk/mono Repository Root: svn://anonsvn.mono-project.com/source Repository UUID: e3ebcda4-bce8-0310-ba0a-eca2169e7518 Revision: 157507 Why dmcs could be not working in this case? When I change source code to dynamic a=new object(); string

Re: [Mono-dev] bug or wrong mono compilation?

2010-05-23 Thread Geoff Norton
It appears to be a bug in the dmcs compiler, could you file it in bugzilla please? On 2010-05-23, at 12:17 PM, xplicit wrote: svn info URL: svn://anonsvn.mono-project.com/source/trunk/mono Repository Root: svn://anonsvn.mono-project.com/source Repository UUID:

[Mono-dev] bug or wrong mono compilation?

2010-05-22 Thread xplicit
I have compiled mono 2.7 from trunk and try to use C# 4.0 features. I wrote simple program: using System; namespace test2 { class MainClass { public static void Main (string[] args) { dynamic a=new object();