Savepoint sp = Database.setSavepoint();
try {
insert new Account(Name = 'Fred');
} finally {
Database.rollback(sp);
}
insert new Widget__c();