[Mono.Profiler.Log] Reverse managed backtrace in SampleHitEvent's
[mono.git] / mcs / errors / cs0246-27.cs
1 // CS0246: The type or namespace name `NotExist' could not be found. Are you missing an assembly reference?
2 // Line: 6
3
4 class X
5 {
6         NotExist<float> foo;
7 }