My first response when I read your question was, "Sure, technically possible, but a really really bad idea."
I'll backtrack a little after seeing the other comments. Okay, each user could have a local repository separate from the central repository, and use this to basically keep checkpoints as he works. In that case they could be completely separate VCSs and it wouldn't matter.
But if you're thinking of two different VCSs simultaneously holding your central repository, that's techincally possible, but a really really bad idea. The whole point of a VCS is that you maintain a history of all the changes made to the files, that you can see what changes were made when and -- if users include half-way decent comments on commits -- why. If a customer who has the June 19, 2007 version has a problem, you can retrieve the code exactly as it existed on June 19, 2007, so you're debugging the code that the user is actually running. If you discover that the latest change was a big mistake you can roll back. Etc etc.
But if you have two repositories ... Are you going to do every commit identically to both repositories? At the least that's a bunch of extra work. At worst, sooner or later somebody is going to make a mistake, forget to commit to one or not commit until the next day after someone else had made an intervening commit, and the repositories won't really be identical. Or are you going to alternate, sometimes checking out of A and sometimes out of B? But then no one will ever know what's in either one.
I could see using two different VCSs for a few days or a few weeks just to try them out and see how they work, get a feel for which you like better. But even at that, I wouldn't do that as my production system. I'd have the real production VCS, and then the other one on the side that we play with but nobody treats as authoritative.