[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0019-38.cs
1 // CS0019: Operator `+' cannot be applied to operands of type `string' and `method group'
2 // Line: 11
3
4 using System;
5
6 class MainClass
7 {
8         public static void Main (string[] args)
9         {
10                 foreach (object at in args) {
11                         Console.WriteLine ("Tipo attributo: " + at.GetType);
12                 }
13         }
14 }