fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. namespace ABC{
  5. enum Attributes
  6. {
  7. _BINARY = 0x26,
  8. _UNSIGNED = 0x27
  9. };
  10. void foo(){
  11. Attributes attrib;
  12. attrib = Attributes::_UNSIGNED;
  13. }
  14. }
  15.  
  16. int main() {
  17. // your code goes here
  18. ABC::Attributes attrib;
  19. attrib = ABC::Attributes::_UNSIGNED;
  20. return 0;
  21. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
Standard output is empty