"Example of Experimental Attribute"

[Experimental("FungusConsumer")]
static void ExperimentalMethod() {
	Console.WriteLine("Eating a random mushroom I found in a field...");
}

static void Test() {
	ExperimentalMethod(); // Compiler error here
}


Code snippet taken from "Complete C# Quick Reference - C# 12".