ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change
on this file since 843054c2 was
843054c2,
checked in by Peter A. Buhr <pabuhr@…>, 9 years ago
|
licencing: seventh groups of files
|
-
Property mode set to
100644
|
File size:
686 bytes
|
Rev | Line | |
---|
[a0d9f94] | 1 | // "./cfa prolog.c" |
---|
| 2 | |
---|
| 3 | extern "C" { extern int printf( const char *fmt, ... ); } |
---|
| 4 | |
---|
| 5 | void printResult( int x ) { printf( "int\n" ); } |
---|
| 6 | void printResult( double x ) { printf( "double\n" ); } |
---|
| 7 | void printResult( char * x ) { printf( "char*\n" ); } |
---|
| 8 | |
---|
| 9 | void is_arithmetic( int x ) {} |
---|
| 10 | void is_arithmetic( double x ) {} |
---|
| 11 | |
---|
| 12 | void is_integer( int x ) {} |
---|
| 13 | |
---|
| 14 | context ArithmeticType( type T ) { |
---|
| 15 | void is_arithmetic( T ); |
---|
| 16 | }; |
---|
| 17 | |
---|
| 18 | context IntegralType( type T | ArithmeticType( T ) ) { |
---|
| 19 | void is_integer( T ); |
---|
| 20 | }; |
---|
| 21 | |
---|
| 22 | forall( type T | IntegralType( T ) | { void printResult( T ); } ) |
---|
| 23 | void hornclause( T param ) { |
---|
| 24 | printResult( param ); |
---|
| 25 | } |
---|
| 26 | |
---|
| 27 | int main() { |
---|
| 28 | int x; |
---|
| 29 | double x; |
---|
| 30 | char * x; |
---|
| 31 | hornclause( x ); |
---|
| 32 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.