﻿# V606\. Ownerless token 'Foo'\.

The analyzer has detected a potential error: an extra lexeme in the code\. Such "lost" lexemes most often occur in the code when the key word return is missing\.

Consider this sample:

```cpp
bool Run(int *p)
{
  if (p == NULL)
    false;
  ...
}
```

The developer forgot to write "return" here\. The code compiles well but has no practical sense\. 

This is the correct code:

```cpp
bool Run(int *p)
{
  if (p == NULL)
    return false;
  ...
}
```