Skip to content

Instantly share code, notes, and snippets.

@JayBazuzi
Last active December 6, 2015 20:49
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 JayBazuzi/a816a0e33d2e6fc2b593 to your computer and use it in GitHub Desktop.
Save JayBazuzi/a816a0e33d2e6fc2b593 to your computer and use it in GitHub Desktop.
class A
{
ctor(B b)
{
this.b = b;
}
public F()
{
// Something that doesn't use B
}
}
// Test:
result = new A().F();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment