Updated with review feedback.
[mono.git] / mcs / errors / cs0266-16.cs
1 // CS0266: Cannot implicitly convert type `long' to `uint'. An explicit conversion exists (are you missing a cast?)
2 // Line: 9
3
4 class S
5 {
6         uint Test (uint a)
7         {
8                 int b = 0;
9                 return a * b;
10         }
11 }