1 /////////////////////////////////////////////////////////////// 2 // Copyright 2015 John Maddock. Distributed under the Boost 3 // Software License, Version 1.0. (See accompanying file 4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_ 5 // 6 7 #include <re2.h> 8 main()9int main() 10 { 11 return re2::RE2::FullMatch("a", "a") ? 0 : 1; 12 } 13