blob: 7a8d8b66574de4eb4980f307e28cd6da039fd266 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0266: Cannot implicitly convert type `long' to `uint'. An explicit conversion exists (are you missing a cast?)
// Line: 7
namespace MWFTestApplication {
class MainWindow {
public enum Testme : uint {
value = (1L << 1)
}
}
}
|