// String Test Program
//
// Tests: Less then or equal
//
#include "string.h"
#include <cassert>
//===========================================================================
int main ()
{
{
//------------------------------------------------------
// Setup fixture
string a("abc");
string b("abc");
// Test
bool result = (a =< b); // result was not declared as a type before.
// Verify
assert(true);
}
}