I have a DU like this:
type Food =
| Beer
| Bacon
| Apple
| Cherry
I want to add a characteristic to the DU to flag if the food is a fruit or not. I first thought of something like this:
type NonFruit = NonFruit
type Fruit = Fruit
type Food =
| Beer of NonFruit
| Bacon of NonFruit
| Apple of Fruit
| Cherry of Fruit
And then a method like this:
let fruitChecker (myFood:Food) = match myFood with | :? NonFruit -> "No" | :? Fruit -> "yes"
But the compiler is yelling at me:
The type 'Food' does not have any proper subtypes and cannot be used as the source
Am I approaching the problem incorrectly?
Thanks