• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 Dmitry Arkhipov
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 
7 #include <string>
8 
main()9 int main() {
10   return QWERTY == std::string("uiop") ? EXIT_SUCCESS : EXIT_FAILURE ;
11 }
12