a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
283 B
C#
16 lines
283 B
C#
//
|
|
// This comes from bug 82064, sadly, Mono does not currently abort
|
|
// as it should on the extra value on the stack
|
|
//
|
|
using System;
|
|
using System.IO;
|
|
|
|
class Program
|
|
{
|
|
public static void Main (string [] args)
|
|
{
|
|
using (StringWriter stringWriter = new StringWriter ()) {
|
|
}
|
|
}
|
|
}
|