language: C# (mono-2.8)
date: 826 days 6 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
using System;
 
class Program
{
public static void Main()
 {
  int a = 200,b;
  int c = a-(b=100);
 }
}
 
prog.cs(8,7): warning CS0219: The variable `c' is assigned but its value is never used
prog.cs(7,15): warning CS0219: The variable `b' is assigned but its value is never used
Compilation succeeded - 2 warning(s)