Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@866 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
6 changed files with 64 additions and 3 deletions
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
|
||||
// <license see="prj:///doc/license.txt">GNU General Public License</license>
|
||||
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using System; |
||||
|
||||
#pragma warning disable 0219
|
||||
|
||||
namespace Debugger.Tests.TestPrograms |
||||
{ |
||||
public class FunctionLocalVariables |
||||
{ |
||||
public static void Main() |
||||
{ |
||||
int i = 0; |
||||
string s = "S"; |
||||
string[] args = new string[] {"p1"}; |
||||
object n = null; |
||||
object o = new object(); |
||||
System.Diagnostics.Debugger.Break(); |
||||
} |
||||
} |
||||
} |
||||
|
||||
#pragma warning restore 0219
|
Loading…
Reference in new issue