mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
30 lines
316 B
C++
30 lines
316 B
C++
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tst_region.cpp
|
|
|
|
Abstract:
|
|
|
|
Test region memory allocator.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2006-09-14.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#include<stdlib.h>
|
|
#include"region.h"
|
|
|
|
static void tst1() {
|
|
// TODO
|
|
}
|
|
|
|
void tst_region() {
|
|
tst1();
|
|
}
|
|
|