mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 02:09:05 +02:00 
			
		
		
		
	# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D14595 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			144 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			144 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <stdio.h>
 | 
						|
#include "mozilla/Unused.h"
 | 
						|
 | 
						|
int main() {
 | 
						|
  char tmp;
 | 
						|
  mozilla::Unused << fread(&tmp, sizeof(tmp), 1, stdin);
 | 
						|
  return 0;
 | 
						|
}
 |