[runtime] Accomplish BITCODE build symbol sharing with only make (#3329)
[mono-project.git] / mono / tests / stream-writer.cs
blob116bf9320bc3fcecaf7299af849b16aa87a44a66
1 using System;
2 using System.IO;
4 public class Test {
6 public static int Main () {
7 FileStream s = new FileStream ((IntPtr)1, FileAccess.Write);
8 StreamWriter sw = new StreamWriter (s);
9 string ts = "This is another test";
11 sw.WriteLine (ts);
13 sw.WriteLine (123456);
15 return 0;