Skip to content

Instantly share code, notes, and snippets.

@bradfier
Created March 31, 2017 09:26
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 bradfier/c402d32c4190dcb9f6bd4a6a01615330 to your computer and use it in GitHub Desktop.
Save bradfier/c402d32c4190dcb9f6bd4a6a01615330 to your computer and use it in GitHub Desktop.
public class Minimal {
public void func(String args) {
int i = 42;
i >>>= 1;
return i;
}
}
// -----------------------------------
public class Minimal {
public void func(String args) {
int i = 42;
i >> >= 1; // Syntax error
return i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment