Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0644.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12036a7737e27856535e1559b761d16bfaac3646 (plain)
1
2
3
4
// CS0644: `X' cannot derive from special class `System.ValueType'
// Line: 3
class X : System.ValueType {
}