You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
839 B
29 lines
839 B
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under MIT X11 license (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using NUnit.Framework; |
|
|
|
namespace ICSharpCode.NRefactory.CSharp.Resolver |
|
{ |
|
[TestFixture] |
|
public class UnsafeCodeTests : ResolverTestBase |
|
{ |
|
[Test, Ignore("fixed statement not implemented in parser")] |
|
public void FixedStatement() |
|
{ |
|
string program = @"using System; |
|
class TestClass { |
|
static void Main(byte[] a) { |
|
fixed (byte* p = a) { |
|
a = $p$; |
|
} } }"; |
|
|
|
var lrr = Resolve<LocalResolveResult>(program); |
|
Assert.AreEqual("System.Byte*", lrr.Type.ReflectionName); |
|
|
|
var rr = Resolve<ResolveResult>(program.Replace("$p$", "$*p$")); |
|
Assert.AreEqual("System.Byte", lrr.Type.ReflectionName); |
|
} |
|
} |
|
}
|
|
|