Index: translator/examples/loopbreak.c
===================================================================
--- translator/examples/loopbreak.c	(revision 42dcae7185b7830fd591cd47f895c0a362a6e77d)
+++ 	(revision )
@@ -1,39 +1,0 @@
-int main() {
-  L1: {
-	double d = 12.123_333_E27;
-      L2: switch ( 3_333_333 ) {	// underscores in constant
-	  case 1,2,3:			// 4~8, 4...8 not working
-	  L3: for ( ;; ) {
-	      L4: for ( ;; ) {
-		    break L1;		// labelled break
-		    break L2;
-		    break L3;
-		    break L4;
-#if 1
-		    continue L1;	// labelled continue
-		    continue L2;
-		    continue L3;
-		    continue L4;
-#endif
-		} // for
-	    } // for
-	    break;
-	  default:
-	    break L1;
-	} // switch
-	3;
-	int i, j;
-	choose ( 7 ) {
-	  case 1,2,3:
-	    i = 3;
-	    fallthru;
-	  case 4,5,6:
-	    j = 3;
-	  default: ;
-	} // choose
-    } // block
-} // main
-
-// Local Variables: //
-// compile-command: "../../bin/cfa loopbreak.c" //
-// End: //
Index: translator/examples/min.c
===================================================================
--- translator/examples/min.c	(revision 42dcae7185b7830fd591cd47f895c0a362a6e77d)
+++ translator/examples/min.c	(revision 3848e0e8736f68e720b8e97d4e893bb0bb0aca6b)
@@ -4,12 +4,12 @@
 
 forall( type T | { int ?<?( T, T ); } )
-T min( T t1, T t2 ) {
+T min( const T t1, const T t2 ) {
     return t1 < t2 ? t1 : t2;
 }
 
 int main() {
-//    char c;
-//    c = min( 'a', 'z' );
-//    printf( "minimum %d\n", c );
+    char c;
+    c = min( 'a', 'z' );
+    printf( "minimum %d\n", c );
     int i;
     i = min( 4, 3 );
