Skip to content

Instantly share code, notes, and snippets.

@bradphelan
Created November 7, 2017 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradphelan/bacc5ce6388ea48b182532783f2a438a to your computer and use it in GitHub Desktop.
Save bradphelan/bacc5ce6388ea48b182532783f2a438a to your computer and use it in GitHub Desktop.
public class Foo
{
public static string Y = X;
public static string Z = Y;
public static string X = "hello";
}
[StaFact]
public void ShouldNotBeNull()
{
Foo.Y.Should().NotBeNull();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment