Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs1720-2.cs
1 // CS1720: Expression will always cause a `System.NullReferenceException'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:1
4
5 public class Tester 
6 {
7     public static void GenericClass<T>(T t) where T : class 
8     {
9         string s = default(T).ToString();
10     }
11 }