You've already forked linux-packaging-mono
							
							
		
			
	
	
		
			19 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|   | // CS1944: An expression tree cannot contain an unsafe pointer operation | ||
|  | // Line: 15 | ||
|  | // Compiler options: -unsafe | ||
|  | 
 | ||
|  | using System; | ||
|  | using System.Linq.Expressions; | ||
|  | 
 | ||
|  | class C | ||
|  | { | ||
|  | 	unsafe delegate int* D (); | ||
|  | 	 | ||
|  | 	public static void Main () | ||
|  | 	{ | ||
|  | 		unsafe { | ||
|  | 			Expression<D> e = () => default (int*); | ||
|  | 		} | ||
|  | 	} | ||
|  | } |