public void IndicesOfAny_ParamsValuesNull ()
		{
			IEnumerable<int> s = new[]{1};
			int[]            v = null;
			s.IndicesOfAny (v);
		}
		public void IndicesOfAny_ValuesNull ()
		{
			IEnumerable<int> s = new[]{1};
			IEnumerable<int> v = null;
			s.IndicesOfAny (v);
		}